Created
January 25, 2016 08:13
-
-
Save nl5887/95f5a651acbae867c475 to your computer and use it in GitHub Desktop.
Amazon Group instances by region and type for Reservations
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 --query 'Reservations[*].Instances[*][Placement.AvailabilityZone,InstanceType]' --filters Name=instance-state-code,Values=16 --output text|sort|uniq -c | |
| 1 eu-west-1a m3.medium | |
| 2 eu-west-1a t2.large | |
| 4 eu-west-1a t2.medium | |
| 3 eu-west-1a t2.micro | |
| 3 eu-west-1a t2.nano | |
| 2 eu-west-1b m3.medium | |
| 2 eu-west-1b t2.medium | |
| 1 eu-west-1c t2.large | |
| 1 eu-west-1c t2.small |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment