VMware: Add missing state param in argument spec (#36339)

This fix adds missing argument parameter called 'state'
and its documentation.

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/36497/head
Abhijeet Kasurde 7 years ago committed by GitHub
parent f87ec440e7
commit 77b903bd85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,6 +41,16 @@ options:
- List of ESXi hostname to manage lockdown.
- Required parameter, if C(cluster_name) is not set.
- See examples for specifications.
state:
description:
- State of hosts system
- If set to C(present), all host systems will be set in lockdown mode.
- If host system is already in lockdown mode and set to C(present), no action will be taken.
- If set to C(absent), all host systems will be removed from lockdown mode.
- If host system is already out of lockdown mode and set to C(absent), no action will be taken.
default: present
choices: [ present, absent ]
version_added: 2.5
extends_documentation_fragment: vmware.documentation
'''
@ -133,8 +143,8 @@ class VmwareLockdownManager(PyVmomi):
"""
results = dict(changed=False, host_lockdown_state=dict())
change_list = []
for host in self.hosts:
desired_state = self.params.get('state')
for host in self.hosts:
results['host_lockdown_state'][host.name] = dict(current_state='',
desired_state=desired_state,
previous_state=''
@ -180,6 +190,7 @@ def main():
argument_spec.update(
cluster_name=dict(type='str', required=False),
esxi_hostname=dict(type='str', required=False),
state=dict(str='str', default='present', choices=['present', 'absent'], required=False),
)
module = AnsibleModule(

Loading…
Cancel
Save