mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding missing arguments: 'values' and adding default value for 'tags' argument in AWS Data Pipeline (#32517)
This commit is contained in:
parent
06363f6ede
commit
6bc3f98eee
1 changed files with 2 additions and 1 deletions
|
@ -569,7 +569,8 @@ def main():
|
|||
timeout=dict(required=False, type='int', default=300),
|
||||
state=dict(default='present', choices=['present', 'absent',
|
||||
'active', 'inactive']),
|
||||
tags=dict(required=False, type='dict')
|
||||
tags=dict(required=False, type='dict', default={}),
|
||||
values=dict(required=False, type='list', default=[])
|
||||
)
|
||||
)
|
||||
module = AnsibleModule(argument_spec, supports_check_mode=False)
|
||||
|
|
Loading…
Reference in a new issue