parent
f59a1348ad
commit
e9fbb5f1b6
1 changed files with 5 additions and 0 deletions
|
@ -245,6 +245,10 @@ def get_properties(autoscaling_group):
|
|||
properties['pending_instances'] += 1
|
||||
properties['instance_facts'] = instance_facts
|
||||
properties['load_balancers'] = autoscaling_group.load_balancers
|
||||
|
||||
if hasattr(autoscaling_group, "tags"):
|
||||
properties['tags'] = dict((t.key, t.value) for t in autoscaling_group.tags)
|
||||
|
||||
return properties
|
||||
|
||||
|
||||
|
@ -357,6 +361,7 @@ def create_autoscaling_group(connection, module):
|
|||
continue
|
||||
if changed:
|
||||
connection.create_or_update_tags(asg_tags)
|
||||
as_group.tags = asg_tags
|
||||
|
||||
# handle loadbalancers separately because None != []
|
||||
load_balancers = module.params.get('load_balancers') or []
|
||||
|
|
Loading…
Reference in a new issue