Created
May 3, 2018 11:55
-
-
Save adhorn/0c96aa90644310c7c38caf9b08b3f18c to your computer and use it in GitHub Desktop.
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
| # Create DynamoDB endpoint in VPC | |
| aws ec2 create-vpc-endpoint --vpc-id vpc-xxxxxx --service-name com.amazonaws.us-east-1.dynamodb --region us-east-1 | |
| { | |
| "VpcEndpoint": { | |
| "VpcEndpointId": "vpce-xxxxxx", | |
| "VpcEndpointType": "Gateway", | |
| "VpcId": "vpc-xxxxxxx", | |
| "ServiceName": "com.amazonaws.us-east-1.dynamodb", | |
| "State": "available", | |
| "PolicyDocument": "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"*\",\"Resource\":\"*\"}]}", | |
| "RouteTableIds": [], | |
| "SubnetIds": [], | |
| "Groups": [], | |
| "PrivateDnsEnabled": false, | |
| "NetworkInterfaceIds": [], | |
| "DnsEntries": [], | |
| "CreationTimestamp": "2018-05-03T08:25:18Z" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment