pulumi_wasm_providers_aws_mini::ec2

Module vpn_connection_route

source
Expand description

Provides a static route between a VPN connection and a customer gateway.

§Example Usage

resources:
  vpc:
    type: aws:ec2:Vpc
    properties:
      cidrBlock: 10.0.0.0/16
  vpnGateway:
    type: aws:ec2:VpnGateway
    name: vpn_gateway
    properties:
      vpcId: ${vpc.id}
  customerGateway:
    type: aws:ec2:CustomerGateway
    name: customer_gateway
    properties:
      bgpAsn: 65000
      ipAddress: 172.0.0.1
      type: ipsec.1
  main:
    type: aws:ec2:VpnConnection
    properties:
      vpnGatewayId: ${vpnGateway.id}
      customerGatewayId: ${customerGateway.id}
      type: ipsec.1
      staticRoutesOnly: true
  office:
    type: aws:ec2:VpnConnectionRoute
    properties:
      destinationCidrBlock: 192.168.10.0/24
      vpnConnectionId: ${main.id}

Structs§

Functions§

  • Registers a new resource with the given unique name and arguments