mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added explicit type for 'tags' option
This commit is contained in:
parent
fada638d88
commit
3dde5196aa
1 changed files with 3 additions and 2 deletions
|
@ -257,7 +257,7 @@ def main():
|
||||||
disable_rollback=dict(default=False, type='bool'),
|
disable_rollback=dict(default=False, type='bool'),
|
||||||
template_url=dict(default=None, required=False),
|
template_url=dict(default=None, required=False),
|
||||||
template_format=dict(default='json', choices=['json', 'yaml'], required=False),
|
template_format=dict(default='json', choices=['json', 'yaml'], required=False),
|
||||||
tags=dict(default=None)
|
tags=dict(default=None, type='dict')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -410,4 +410,5 @@ def main():
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
from ansible.module_utils.ec2 import *
|
from ansible.module_utils.ec2 import *
|
||||||
|
|
||||||
main()
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
|
Loading…
Reference in a new issue