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 #4473 from harrisongu/patch-1

Fix bug for setting ec2 tags
This commit is contained in:
Michael DeHaan 2013-10-12 06:20:53 -07:00
commit cf667fc4ba

View file

@ -181,8 +181,8 @@ def main():
tagdict[tag.name] = tag.value tagdict[tag.name] = tag.value
if state == 'present': if state == 'present':
if set(tags) == set(tagdict): if set(tags).issubset(set(tagdict)):
module.exit_json(msg="Tags already match for %s." %resource, changed=False) module.exit_json(msg="Tags already exists in %s." %resource, changed=False)
else: else:
for (key, value) in set(tags.items()): for (key, value) in set(tags.items()):
if (key, value) not in set(tagdict.items()): if (key, value) not in set(tagdict.items()):