mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-03 04:34:24 -07: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),
|
name=dict(required=False),
|
||||||
node=dict(required=False),
|
node=dict(required=False),
|
||||||
state=dict(default='present',
|
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)
|
module = AnsibleModule(argument_spec, supports_check_mode=False)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue