5 lines
254 B
Bash
5 lines
254 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
|
||
|
jq -c '.Reservations[].Instances[] | select(.Platform!="windows") | [.InstanceId,.PublicIpAddress,.PrivateIpAddress,(.Tags[] | select(.Key=="Name")| .Value)?, .InstanceType, .Placement.AvailabilityZone, .State.Name]' | tr -d '[["]'
|