Semi-random amusing code snippet of the day:
aws ec2 describe-instances | jq << EOF
.[][].Instances[]
| select(.Tags[]?.Value == "production")
| .PrivateIpAddress
EOF
Semi-random amusing code snippet of the day:
aws ec2 describe-instances | jq << EOF
.[][].Instances[]
| select(.Tags[]?.Value == "production")
| .PrivateIpAddress
EOF