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:
parent
b8b2613c35
commit
334bfbd465
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue