Created
May 14, 2015 09:55
-
-
Save iktakahiro/110b2b93d844254e37f3 to your computer and use it in GitHub Desktop.
AWS EC2 リザーブドインスタンスの購入検討に役立ちそうなワンライナー(途中) ref: http://qiita.com/iktakahiro/items/4c9cd0452a7edea6d9b0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws ec2 describe-instances | jq -r '.Reservations[].Instances[] | select(.State.Name == "running") | [.InstanceId, .InstanceType, .Placement.AvailabilityZone, .Tags[].Value] |@csv ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws ec2 describe-reserved-instances |jq -r '.ReservedInstances[] | select(.State == "active") | [.InstanceType, .AvailabilityZone, .OfferingType, .InstanceCount] | @csv' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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