Fix review comments from @bcoca in #745

pull/18777/head
Toshio Kuratomi 10 years ago committed by Matt Clay
parent 5378b5db98
commit e5149f3b30

@ -225,19 +225,10 @@ def enforce_required_arguments(module):
def get_properties(autoscaling_group): def get_properties(autoscaling_group):
properties = dict((attr, getattr(autoscaling_group, attr)) for attr in ASG_ATTRIBUTES) properties = dict((attr, getattr(autoscaling_group, attr)) for attr in ASG_ATTRIBUTES)
# # Ugly hack to make this JSON-serializable. We take a list of boto Tag
# Ansible output is serialized to JSON but our # objects and replace them with a dict-representation. Needed because the
# tag list is sometimes a list of Tag-objects # tags are included in ansible's return value (which is jsonified)
# (as received by Boto). if 'tags' in properties and isinstance(properties['tags'], list):
#
# Since we can not easily teach python to serialize
# such a list we replace it with a dict-representation
# in those cases.
#
# Yes, this is an ugly hack. But at least it works,
# unlike the even uglier hack that was here previously...
#
if 'tags' in properties and properties['tags'] is list:
serializable_tags = {} serializable_tags = {}
for tag in properties['tags']: for tag in properties['tags']:
serializable_tags[tag.key] = [tag.value, tag.propagate_at_launch] serializable_tags[tag.key] = [tag.value, tag.propagate_at_launch]

Loading…
Cancel
Save