mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Update vmware_host_lockdown.py (#41189)
esxi_hostname should be 'list' instead of 'str'
This commit is contained in:
parent
8e4c56d773
commit
a73585552f
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ def main():
|
|||
argument_spec = vmware_argument_spec()
|
||||
argument_spec.update(
|
||||
cluster_name=dict(type='str', required=False),
|
||||
esxi_hostname=dict(type='str', required=False),
|
||||
esxi_hostname=dict(type='list', required=False),
|
||||
state=dict(str='str', default='present', choices=['present', 'absent'], required=False),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue