Skip to content

Route tables in AWS

Anne LoVerso edited this page Aug 25, 2021 · 1 revision

resolving routing between VPCs and serverless things like DynamoDB

First, added to serverless.ts to create vpc endpoint

VPCEndpointForDynamo: {
  Type: "AWS::EC2::VPCEndpoint",
  Properties: {
    ServiceName: `com.amazonaws.${region}.dynamodb`,
    VpcEndpointType: "Gateway",
    VpcId: vpcId
  },
}

then:

  • manually added route tables from the VPC → Endpoint console
  • go to Route Tables console to find routes → destination pl-xxxx destination
  • added it to the Security Group outbound rules using the pl-xxxxxxx destination

resources used:

Running velocity:

sprint 4: 11

sprint 5: 9

sprint 6: 7

sprint 7: 12

sprint 8: 9

sprint 8: 12

3-week average: 11

Clone this wiki locally