Fix AutoScalingGroup tags in DescribeAutoScalingGroups
I'm not certain that this is the approach that's desired. It'd be nice to dynamically convert the keys one way or the other. Looking for feedback. Signed-off-by: Scott Greene <scott.greene@getbraintree.com>
This commit is contained in:
parent
99af8bdb79
commit
993087f2bb
2 changed files with 8 additions and 7 deletions
|
|
@ -241,11 +241,11 @@ DESCRIBE_AUTOSCALING_GROUPS_TEMPLATE = """<DescribeAutoScalingGroupsResponse xml
|
|||
<Tags>
|
||||
{% for tag in group.tags %}
|
||||
<member>
|
||||
<ResourceType>{{ tag.resource_type }}</ResourceType>
|
||||
<ResourceId>{{ tag.resource_id }}</ResourceId>
|
||||
<PropagateAtLaunch>{{ tag.propagate_at_launch }}</PropagateAtLaunch>
|
||||
<Key>{{ tag.key }}</Key>
|
||||
<Value>{{ tag.value }}</Value>
|
||||
<ResourceType>{{ tag.resource_type or tag.ResourceType }}</ResourceType>
|
||||
<ResourceId>{{ tag.resource_id or tag.ResourceId }}</ResourceId>
|
||||
<PropagateAtLaunch>{{ tag.propagate_at_launch or tag.PropagateAtLaunch }}</PropagateAtLaunch>
|
||||
<Key>{{ tag.key or tag.Key }}</Key>
|
||||
<Value>{{ tag.value or tag.Value }}</Value>
|
||||
</member>
|
||||
{% endfor %}
|
||||
</Tags>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue