Skip to content

Instantly share code, notes, and snippets.

@anryko
Last active August 6, 2018 14:52
Show Gist options
  • Save anryko/ce377cb3d3e247d8ebb96e2c73606d87 to your computer and use it in GitHub Desktop.
Save anryko/ce377cb3d3e247d8ebb96e2c73606d87 to your computer and use it in GitHub Desktop.
aws_asg_collect_tags
# Get AWS ASG tags in one object per ASG.
aws autoscaling describe-auto-scaling-groups \
| jq -r '.AutoScalingGroups[].Tags | reduce .[] as $n ({}; . * {($n.Key): $n.Value})'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment