Skip to content

Commit

Permalink
vm_name is required only if state is set to present
Browse files Browse the repository at this point in the history
  • Loading branch information
OrrBG committed Dec 24, 2024
1 parent 8ccc296 commit 6df4796
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelogs/fragments/93-bugfix-vm_name-required
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
minor_changes:
- info - Made vm_name variable not required in content_template module
- info - Made vm_name variable required only when state is set to present in content_template module
3 changes: 2 additions & 1 deletion plugins/modules/content_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
description:
- The name of the VM to be used to create template.
type: str
required: only if state is set to present
host:
description:
- Host onto which the virtual machine template should be placed.
Expand Down Expand Up @@ -205,7 +206,7 @@ def main():
argument_spec.update(
template=dict(type='str', required=True),
library=dict(type='str', required=True),
vm_name=dict(type='str'),
vm_name=dict(type='str', required=(argument_spec['state'] == 'present')),
host=dict(type='str'),
cluster=dict(type='str'),
resource_pool=dict(type='str'),
Expand Down

0 comments on commit 6df4796

Please sign in to comment.