Commit 375edbd0 by James Cammarata

Check to make sure key exists in tag list before using it

Fixes #7910
parent 98f84382
......@@ -209,6 +209,8 @@ def create_autoscaling_group(connection, module):
existing_tags = as_group.tags
existing_tag_map = dict((tag.key, tag) for tag in existing_tags)
for tag in set_tags:
if 'key' not in tag:
continue
if ( not tag['key'] in existing_tag_map or
existing_tag_map[tag['key']].value != tag['value'] or
('propagate_at_launch' in tag and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment