NetworkConfig / VpcConfig | VpcTemplatesConfig / RouteTableConfig

Virtual Private Cloud (VPC) route table configuration.

Use this configuration to define custom route tables for your VPC. Route tables contain a set of rules, called routes, to determine where network traffic from a subnet or gateway is directed.

- name: SubnetRouteTable
routes: []
tags: []
- name: GatewayRouteTable
gatewayAssociation: internetGateway
routes: []
tags: []
interface IRouteTableConfig {
    gatewayAssociation?: GatewayRouteTableType;
    name: string;
    routes?: IRouteTableEntryConfig[];
    tags?: ITag[];
}

Properties

gatewayAssociation?: GatewayRouteTableType

Designate a gateway to associate this route table with.

Note: Only define this property when creating a gateway route table. Leave undefined for subnet route tables.

name: string

A friendly name for the VPC route table.

CAUTION: Changing this value after initial deployment will cause the route table to be recreated. Please be aware that any downstream dependencies may cause this property update to fail.

An array of VPC route table entry configuration objects.

RouteTableEntryConfig

tags?: ITag[]

(OPTIONAL) An array of tag objects for the VPC route table.