You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running into an issue where my AutoScalingGroup object isn't return the tag values when I call #tags on it. The values, however, are present when I call #data on the AutoScalingGroup object. I can use data to perform what I need for now -- just thought I'd create an issue.
##
# Using #data
asg = Aws::AutoScaling::Resource.new(region: 'us-east-1')
a = asg.group('example-group')
a.data[:tags]
=> [#<struct Aws::AutoScaling::Types::TagDescription resource_id="example-group", resource_type="auto-scaling-group", key="cluster:name", value="test2", propagate_at_launch=true>]
##
# Using #tags
a.tags.to_a
=> [#<Aws::AutoScaling::Tag key="podbay:cluster", resource_id="example-group", resource_type="auto-scaling-group">]
The text was updated successfully, but these errors were encountered:
I'm running into an issue where my AutoScalingGroup object isn't return the tag values when I call
#tags
on it. The values, however, are present when I call#data
on the AutoScalingGroup object. I can use data to perform what I need for now -- just thought I'd create an issue.The text was updated successfully, but these errors were encountered: