Fixed dicts comparison for tags

This commit is contained in:
whiter 2015-07-02 15:24:39 +10:00 committed by Matt Clay
parent e4dd0d98d4
commit a5a9c92fcd

View file

@ -145,7 +145,7 @@ def update_vpc_tags(vpc, module, vpc_obj, tags, name):
tags.update({'Name': name}) tags.update({'Name': name})
try: try:
current_tags = dict((t.name, t.value) for t in vpc.get_all_tags(filters={'resource-id': vpc_obj.id})) current_tags = dict((t.name, t.value) for t in vpc.get_all_tags(filters={'resource-id': vpc_obj.id}))
if sorted(current_tags) != sorted(tags): if cmp(tags, current_tags):
vpc.create_tags(vpc_obj.id, tags) vpc.create_tags(vpc_obj.id, tags)
return True return True
else: else: