1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #8145 from amandolo/ec2_tag

Fix EC2_TAG module output structure when listing tags
This commit is contained in:
Michael DeHaan 2014-07-17 07:45:53 -04:00
commit 3aa10d9db5

View file

@ -142,7 +142,7 @@ def main():
module.exit_json(msg="Tags %s removed for resource %s." % (dictremove,resource), changed=True)
if state == 'list':
module.exit_json(changed=False, **tagdict)
module.exit_json(changed=False, tags=tagdict)
sys.exit(0)
# import module snippets