Merge pull request #3113 from Constantin07/update_cloudformation
cloudformation.py - Added explicit type for 'tags' option
This commit is contained in:
commit
876b91eb3d
1 changed files with 3 additions and 2 deletions
|
@ -247,7 +247,7 @@ def main():
|
|||
disable_rollback=dict(default=False, type='bool'),
|
||||
template_url=dict(default=None, required=False),
|
||||
template_format=dict(default='json', choices=['json', 'yaml'], required=False),
|
||||
tags=dict(default=None)
|
||||
tags=dict(default=None, type='dict')
|
||||
)
|
||||
)
|
||||
|
||||
|
@ -400,4 +400,5 @@ def main():
|
|||
from ansible.module_utils.basic import *
|
||||
from ansible.module_utils.ec2 import *
|
||||
|
||||
main()
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue