NetworkConfig / VpcPeeringConfig

VPC peering configuration. Used to define VPC peering connections.

VPC can be from vpc or vpcTemplates configuration.

CAUTION: Both vpcs can't be from vpcTemplates.

vpcPeering:
- name: Peering
vpcs:
- VPC-A
- VPC-B
tags: []

Between VPC Template and VPC

vpcPeering:
- name: Peering
vpcs:
- VPC-Template-A
- VPC-B
tags: []
interface IVpcPeeringConfig {
    name: string;
    tags?: ITag[];
    vpcs: string[];
}

Properties

Properties

name: string

A friendly name for the peering connection.

tags?: ITag[]

An array of tags for the peering connection.

vpcs: string[]

The VPCs to peer.

VPC can be from vpc or vpcTemplates configuration.

CAUTION: Both vpcs can't be from vpcTemplates.