Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save adhorn/0c96aa90644310c7c38caf9b08b3f18c to your computer and use it in GitHub Desktop.

Select an option

Save adhorn/0c96aa90644310c7c38caf9b08b3f18c to your computer and use it in GitHub Desktop.
# 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