mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Adding missing arguments: 'values' and adding default value for 'tags' argument in AWS Data Pipeline (#32517)
This commit is contained in:
committed by
Sloane Hertel
parent
06363f6ede
commit
6bc3f98eee
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user