Skip to content

Instantly share code, notes, and snippets.

@iktakahiro
Created May 14, 2015 09:55
Show Gist options
  • Save iktakahiro/110b2b93d844254e37f3 to your computer and use it in GitHub Desktop.
Save iktakahiro/110b2b93d844254e37f3 to your computer and use it in GitHub Desktop.
AWS EC2 リザーブドインスタンスの購入検討に役立ちそうなワンライナー(途中) ref: http://qiita.com/iktakahiro/items/4c9cd0452a7edea6d9b0
$ aws ec2 describe-instances | jq -r '.Reservations[].Instances[] | select(.State.Name == "running") | [.InstanceId, .InstanceType, .Placement.AvailabilityZone, .Tags[].Value] |@csv '
"i-aaaaaaaa","t2.medium","ap-northeast-1b","Tag1","Tag2"
"i-bbbbbbbb","r3.large","ap-northeast-1b","Tag1","Tag2"
"i-cccccccc","m1.small","ap-northeast-1c","Tag1","Tag2"
"i-dddddddd","t2.small","ap-northeast-1b","Tag1","Tag2"
"i-eeeeeeee","m1.small","ap-northeast-1b","Tag1","Tag2"
$ aws ec2 describe-reserved-instances |jq -r '.ReservedInstances[] | select(.State == "active") | [.InstanceType, .AvailabilityZone, .OfferingType, .InstanceCount] | @csv'
"m3.large","ap-northeast-1c","No Upfront",1
"c3.2xlarge","ap-northeast-1c","No Upfront",1
"c3.large","ap-northeast-1c","Partial Upfront",1
"t2.medium","ap-northeast-1c","No Upfront",1
"m3.medium","ap-northeast-1c","No Upfront",1
"m3.large","ap-northeast-1c","Partial Upfront",1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment