1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add a datacenter parameter, fix #1693

This commit is contained in:
Michael Scherer 2016-02-24 12:03:05 +01:00 committed by Matt Clay
parent b8b2613c35
commit 334bfbd465

View file

@ -248,7 +248,8 @@ def main():
name=dict(required=False),
node=dict(required=False),
state=dict(default='present',
choices=['present', 'absent', 'info', 'node', 'list'])
choices=['present', 'absent', 'info', 'node', 'list']),
datacenter=dict(required=False)
)
module = AnsibleModule(argument_spec, supports_check_mode=False)