Last active
March 20, 2019 16:41
-
-
Save cwjohnston/e1ad6761f8a061a984a7687f2f49bf04 to your computer and use it in GitHub Desktop.
This file contains 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-account-attributes --attribute-names supported-platforms | |
{ | |
"AccountAttributes": [ | |
{ | |
"AttributeName": "supported-platforms", | |
"AttributeValues": [ | |
{ | |
"AttributeValue": "EC2" | |
}, | |
{ | |
"AttributeValue": "VPC" | |
} | |
] | |
} | |
] | |
} | |
$ aws ec2 create-default-vpc | |
An error occurred (OperationNotPermitted) when calling the CreateDefaultVpc operation: Accounts on the EC2-Classic platform cannot create a default VPC. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment