1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. compute
  5. ExternalVpnGateway
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.compute.ExternalVpnGateway

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    Represents a VPN gateway managed outside of GCP.

    To get more information about ExternalVpnGateway, see:

    Example Usage

    External Vpn Gateway

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const network = new gcp.compute.Network("network", {
        name: "network-1",
        routingMode: "GLOBAL",
        autoCreateSubnetworks: false,
    });
    const haGateway = new gcp.compute.HaVpnGateway("ha_gateway", {
        region: "us-central1",
        name: "ha-vpn",
        network: network.id,
    });
    const externalGateway = new gcp.compute.ExternalVpnGateway("external_gateway", {
        name: "external-gateway",
        redundancyType: "SINGLE_IP_INTERNALLY_REDUNDANT",
        description: "An externally managed VPN gateway",
        interfaces: [{
            id: 0,
            ipAddress: "8.8.8.8",
        }],
    });
    const networkSubnet1 = new gcp.compute.Subnetwork("network_subnet1", {
        name: "ha-vpn-subnet-1",
        ipCidrRange: "10.0.1.0/24",
        region: "us-central1",
        network: network.id,
    });
    const networkSubnet2 = new gcp.compute.Subnetwork("network_subnet2", {
        name: "ha-vpn-subnet-2",
        ipCidrRange: "10.0.2.0/24",
        region: "us-west1",
        network: network.id,
    });
    const router1 = new gcp.compute.Router("router1", {
        name: "ha-vpn-router1",
        network: network.name,
        bgp: {
            asn: 64514,
        },
    });
    const tunnel1 = new gcp.compute.VPNTunnel("tunnel1", {
        name: "ha-vpn-tunnel1",
        region: "us-central1",
        vpnGateway: haGateway.id,
        peerExternalGateway: externalGateway.id,
        peerExternalGatewayInterface: 0,
        sharedSecret: "a secret message",
        router: router1.id,
        vpnGatewayInterface: 0,
    });
    const tunnel2 = new gcp.compute.VPNTunnel("tunnel2", {
        name: "ha-vpn-tunnel2",
        region: "us-central1",
        vpnGateway: haGateway.id,
        peerExternalGateway: externalGateway.id,
        peerExternalGatewayInterface: 0,
        sharedSecret: "a secret message",
        router: pulumi.interpolate` ${router1.id}`,
        vpnGatewayInterface: 1,
    });
    const router1Interface1 = new gcp.compute.RouterInterface("router1_interface1", {
        name: "router1-interface1",
        router: router1.name,
        region: "us-central1",
        ipRange: "169.254.0.1/30",
        vpnTunnel: tunnel1.name,
    });
    const router1Peer1 = new gcp.compute.RouterPeer("router1_peer1", {
        name: "router1-peer1",
        router: router1.name,
        region: "us-central1",
        peerIpAddress: "169.254.0.2",
        peerAsn: 64515,
        advertisedRoutePriority: 100,
        "interface": router1Interface1.name,
    });
    const router1Interface2 = new gcp.compute.RouterInterface("router1_interface2", {
        name: "router1-interface2",
        router: router1.name,
        region: "us-central1",
        ipRange: "169.254.1.1/30",
        vpnTunnel: tunnel2.name,
    });
    const router1Peer2 = new gcp.compute.RouterPeer("router1_peer2", {
        name: "router1-peer2",
        router: router1.name,
        region: "us-central1",
        peerIpAddress: "169.254.1.2",
        peerAsn: 64515,
        advertisedRoutePriority: 100,
        "interface": router1Interface2.name,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    network = gcp.compute.Network("network",
        name="network-1",
        routing_mode="GLOBAL",
        auto_create_subnetworks=False)
    ha_gateway = gcp.compute.HaVpnGateway("ha_gateway",
        region="us-central1",
        name="ha-vpn",
        network=network.id)
    external_gateway = gcp.compute.ExternalVpnGateway("external_gateway",
        name="external-gateway",
        redundancy_type="SINGLE_IP_INTERNALLY_REDUNDANT",
        description="An externally managed VPN gateway",
        interfaces=[gcp.compute.ExternalVpnGatewayInterfaceArgs(
            id=0,
            ip_address="8.8.8.8",
        )])
    network_subnet1 = gcp.compute.Subnetwork("network_subnet1",
        name="ha-vpn-subnet-1",
        ip_cidr_range="10.0.1.0/24",
        region="us-central1",
        network=network.id)
    network_subnet2 = gcp.compute.Subnetwork("network_subnet2",
        name="ha-vpn-subnet-2",
        ip_cidr_range="10.0.2.0/24",
        region="us-west1",
        network=network.id)
    router1 = gcp.compute.Router("router1",
        name="ha-vpn-router1",
        network=network.name,
        bgp=gcp.compute.RouterBgpArgs(
            asn=64514,
        ))
    tunnel1 = gcp.compute.VPNTunnel("tunnel1",
        name="ha-vpn-tunnel1",
        region="us-central1",
        vpn_gateway=ha_gateway.id,
        peer_external_gateway=external_gateway.id,
        peer_external_gateway_interface=0,
        shared_secret="a secret message",
        router=router1.id,
        vpn_gateway_interface=0)
    tunnel2 = gcp.compute.VPNTunnel("tunnel2",
        name="ha-vpn-tunnel2",
        region="us-central1",
        vpn_gateway=ha_gateway.id,
        peer_external_gateway=external_gateway.id,
        peer_external_gateway_interface=0,
        shared_secret="a secret message",
        router=router1.id.apply(lambda id: f" {id}"),
        vpn_gateway_interface=1)
    router1_interface1 = gcp.compute.RouterInterface("router1_interface1",
        name="router1-interface1",
        router=router1.name,
        region="us-central1",
        ip_range="169.254.0.1/30",
        vpn_tunnel=tunnel1.name)
    router1_peer1 = gcp.compute.RouterPeer("router1_peer1",
        name="router1-peer1",
        router=router1.name,
        region="us-central1",
        peer_ip_address="169.254.0.2",
        peer_asn=64515,
        advertised_route_priority=100,
        interface=router1_interface1.name)
    router1_interface2 = gcp.compute.RouterInterface("router1_interface2",
        name="router1-interface2",
        router=router1.name,
        region="us-central1",
        ip_range="169.254.1.1/30",
        vpn_tunnel=tunnel2.name)
    router1_peer2 = gcp.compute.RouterPeer("router1_peer2",
        name="router1-peer2",
        router=router1.name,
        region="us-central1",
        peer_ip_address="169.254.1.2",
        peer_asn=64515,
        advertised_route_priority=100,
        interface=router1_interface2.name)
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		network, err := compute.NewNetwork(ctx, "network", &compute.NetworkArgs{
    			Name:                  pulumi.String("network-1"),
    			RoutingMode:           pulumi.String("GLOBAL"),
    			AutoCreateSubnetworks: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		haGateway, err := compute.NewHaVpnGateway(ctx, "ha_gateway", &compute.HaVpnGatewayArgs{
    			Region:  pulumi.String("us-central1"),
    			Name:    pulumi.String("ha-vpn"),
    			Network: network.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		externalGateway, err := compute.NewExternalVpnGateway(ctx, "external_gateway", &compute.ExternalVpnGatewayArgs{
    			Name:           pulumi.String("external-gateway"),
    			RedundancyType: pulumi.String("SINGLE_IP_INTERNALLY_REDUNDANT"),
    			Description:    pulumi.String("An externally managed VPN gateway"),
    			Interfaces: compute.ExternalVpnGatewayInterfaceArray{
    				&compute.ExternalVpnGatewayInterfaceArgs{
    					Id:        pulumi.Int(0),
    					IpAddress: pulumi.String("8.8.8.8"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewSubnetwork(ctx, "network_subnet1", &compute.SubnetworkArgs{
    			Name:        pulumi.String("ha-vpn-subnet-1"),
    			IpCidrRange: pulumi.String("10.0.1.0/24"),
    			Region:      pulumi.String("us-central1"),
    			Network:     network.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewSubnetwork(ctx, "network_subnet2", &compute.SubnetworkArgs{
    			Name:        pulumi.String("ha-vpn-subnet-2"),
    			IpCidrRange: pulumi.String("10.0.2.0/24"),
    			Region:      pulumi.String("us-west1"),
    			Network:     network.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		router1, err := compute.NewRouter(ctx, "router1", &compute.RouterArgs{
    			Name:    pulumi.String("ha-vpn-router1"),
    			Network: network.Name,
    			Bgp: &compute.RouterBgpArgs{
    				Asn: pulumi.Int(64514),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		tunnel1, err := compute.NewVPNTunnel(ctx, "tunnel1", &compute.VPNTunnelArgs{
    			Name:                         pulumi.String("ha-vpn-tunnel1"),
    			Region:                       pulumi.String("us-central1"),
    			VpnGateway:                   haGateway.ID(),
    			PeerExternalGateway:          externalGateway.ID(),
    			PeerExternalGatewayInterface: pulumi.Int(0),
    			SharedSecret:                 pulumi.String("a secret message"),
    			Router:                       router1.ID(),
    			VpnGatewayInterface:          pulumi.Int(0),
    		})
    		if err != nil {
    			return err
    		}
    		tunnel2, err := compute.NewVPNTunnel(ctx, "tunnel2", &compute.VPNTunnelArgs{
    			Name:                         pulumi.String("ha-vpn-tunnel2"),
    			Region:                       pulumi.String("us-central1"),
    			VpnGateway:                   haGateway.ID(),
    			PeerExternalGateway:          externalGateway.ID(),
    			PeerExternalGatewayInterface: pulumi.Int(0),
    			SharedSecret:                 pulumi.String("a secret message"),
    			Router: router1.ID().ApplyT(func(id string) (string, error) {
    				return fmt.Sprintf(" %v", id), nil
    			}).(pulumi.StringOutput),
    			VpnGatewayInterface: pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		router1Interface1, err := compute.NewRouterInterface(ctx, "router1_interface1", &compute.RouterInterfaceArgs{
    			Name:      pulumi.String("router1-interface1"),
    			Router:    router1.Name,
    			Region:    pulumi.String("us-central1"),
    			IpRange:   pulumi.String("169.254.0.1/30"),
    			VpnTunnel: tunnel1.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewRouterPeer(ctx, "router1_peer1", &compute.RouterPeerArgs{
    			Name:                    pulumi.String("router1-peer1"),
    			Router:                  router1.Name,
    			Region:                  pulumi.String("us-central1"),
    			PeerIpAddress:           pulumi.String("169.254.0.2"),
    			PeerAsn:                 pulumi.Int(64515),
    			AdvertisedRoutePriority: pulumi.Int(100),
    			Interface:               router1Interface1.Name,
    		})
    		if err != nil {
    			return err
    		}
    		router1Interface2, err := compute.NewRouterInterface(ctx, "router1_interface2", &compute.RouterInterfaceArgs{
    			Name:      pulumi.String("router1-interface2"),
    			Router:    router1.Name,
    			Region:    pulumi.String("us-central1"),
    			IpRange:   pulumi.String("169.254.1.1/30"),
    			VpnTunnel: tunnel2.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewRouterPeer(ctx, "router1_peer2", &compute.RouterPeerArgs{
    			Name:                    pulumi.String("router1-peer2"),
    			Router:                  router1.Name,
    			Region:                  pulumi.String("us-central1"),
    			PeerIpAddress:           pulumi.String("169.254.1.2"),
    			PeerAsn:                 pulumi.Int(64515),
    			AdvertisedRoutePriority: pulumi.Int(100),
    			Interface:               router1Interface2.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var network = new Gcp.Compute.Network("network", new()
        {
            Name = "network-1",
            RoutingMode = "GLOBAL",
            AutoCreateSubnetworks = false,
        });
    
        var haGateway = new Gcp.Compute.HaVpnGateway("ha_gateway", new()
        {
            Region = "us-central1",
            Name = "ha-vpn",
            Network = network.Id,
        });
    
        var externalGateway = new Gcp.Compute.ExternalVpnGateway("external_gateway", new()
        {
            Name = "external-gateway",
            RedundancyType = "SINGLE_IP_INTERNALLY_REDUNDANT",
            Description = "An externally managed VPN gateway",
            Interfaces = new[]
            {
                new Gcp.Compute.Inputs.ExternalVpnGatewayInterfaceArgs
                {
                    Id = 0,
                    IpAddress = "8.8.8.8",
                },
            },
        });
    
        var networkSubnet1 = new Gcp.Compute.Subnetwork("network_subnet1", new()
        {
            Name = "ha-vpn-subnet-1",
            IpCidrRange = "10.0.1.0/24",
            Region = "us-central1",
            Network = network.Id,
        });
    
        var networkSubnet2 = new Gcp.Compute.Subnetwork("network_subnet2", new()
        {
            Name = "ha-vpn-subnet-2",
            IpCidrRange = "10.0.2.0/24",
            Region = "us-west1",
            Network = network.Id,
        });
    
        var router1 = new Gcp.Compute.Router("router1", new()
        {
            Name = "ha-vpn-router1",
            Network = network.Name,
            Bgp = new Gcp.Compute.Inputs.RouterBgpArgs
            {
                Asn = 64514,
            },
        });
    
        var tunnel1 = new Gcp.Compute.VPNTunnel("tunnel1", new()
        {
            Name = "ha-vpn-tunnel1",
            Region = "us-central1",
            VpnGateway = haGateway.Id,
            PeerExternalGateway = externalGateway.Id,
            PeerExternalGatewayInterface = 0,
            SharedSecret = "a secret message",
            Router = router1.Id,
            VpnGatewayInterface = 0,
        });
    
        var tunnel2 = new Gcp.Compute.VPNTunnel("tunnel2", new()
        {
            Name = "ha-vpn-tunnel2",
            Region = "us-central1",
            VpnGateway = haGateway.Id,
            PeerExternalGateway = externalGateway.Id,
            PeerExternalGatewayInterface = 0,
            SharedSecret = "a secret message",
            Router = router1.Id.Apply(id => $" {id}"),
            VpnGatewayInterface = 1,
        });
    
        var router1Interface1 = new Gcp.Compute.RouterInterface("router1_interface1", new()
        {
            Name = "router1-interface1",
            Router = router1.Name,
            Region = "us-central1",
            IpRange = "169.254.0.1/30",
            VpnTunnel = tunnel1.Name,
        });
    
        var router1Peer1 = new Gcp.Compute.RouterPeer("router1_peer1", new()
        {
            Name = "router1-peer1",
            Router = router1.Name,
            Region = "us-central1",
            PeerIpAddress = "169.254.0.2",
            PeerAsn = 64515,
            AdvertisedRoutePriority = 100,
            Interface = router1Interface1.Name,
        });
    
        var router1Interface2 = new Gcp.Compute.RouterInterface("router1_interface2", new()
        {
            Name = "router1-interface2",
            Router = router1.Name,
            Region = "us-central1",
            IpRange = "169.254.1.1/30",
            VpnTunnel = tunnel2.Name,
        });
    
        var router1Peer2 = new Gcp.Compute.RouterPeer("router1_peer2", new()
        {
            Name = "router1-peer2",
            Router = router1.Name,
            Region = "us-central1",
            PeerIpAddress = "169.254.1.2",
            PeerAsn = 64515,
            AdvertisedRoutePriority = 100,
            Interface = router1Interface2.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.compute.HaVpnGateway;
    import com.pulumi.gcp.compute.HaVpnGatewayArgs;
    import com.pulumi.gcp.compute.ExternalVpnGateway;
    import com.pulumi.gcp.compute.ExternalVpnGatewayArgs;
    import com.pulumi.gcp.compute.inputs.ExternalVpnGatewayInterfaceArgs;
    import com.pulumi.gcp.compute.Subnetwork;
    import com.pulumi.gcp.compute.SubnetworkArgs;
    import com.pulumi.gcp.compute.Router;
    import com.pulumi.gcp.compute.RouterArgs;
    import com.pulumi.gcp.compute.inputs.RouterBgpArgs;
    import com.pulumi.gcp.compute.VPNTunnel;
    import com.pulumi.gcp.compute.VPNTunnelArgs;
    import com.pulumi.gcp.compute.RouterInterface;
    import com.pulumi.gcp.compute.RouterInterfaceArgs;
    import com.pulumi.gcp.compute.RouterPeer;
    import com.pulumi.gcp.compute.RouterPeerArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var network = new Network("network", NetworkArgs.builder()        
                .name("network-1")
                .routingMode("GLOBAL")
                .autoCreateSubnetworks(false)
                .build());
    
            var haGateway = new HaVpnGateway("haGateway", HaVpnGatewayArgs.builder()        
                .region("us-central1")
                .name("ha-vpn")
                .network(network.id())
                .build());
    
            var externalGateway = new ExternalVpnGateway("externalGateway", ExternalVpnGatewayArgs.builder()        
                .name("external-gateway")
                .redundancyType("SINGLE_IP_INTERNALLY_REDUNDANT")
                .description("An externally managed VPN gateway")
                .interfaces(ExternalVpnGatewayInterfaceArgs.builder()
                    .id(0)
                    .ipAddress("8.8.8.8")
                    .build())
                .build());
    
            var networkSubnet1 = new Subnetwork("networkSubnet1", SubnetworkArgs.builder()        
                .name("ha-vpn-subnet-1")
                .ipCidrRange("10.0.1.0/24")
                .region("us-central1")
                .network(network.id())
                .build());
    
            var networkSubnet2 = new Subnetwork("networkSubnet2", SubnetworkArgs.builder()        
                .name("ha-vpn-subnet-2")
                .ipCidrRange("10.0.2.0/24")
                .region("us-west1")
                .network(network.id())
                .build());
    
            var router1 = new Router("router1", RouterArgs.builder()        
                .name("ha-vpn-router1")
                .network(network.name())
                .bgp(RouterBgpArgs.builder()
                    .asn(64514)
                    .build())
                .build());
    
            var tunnel1 = new VPNTunnel("tunnel1", VPNTunnelArgs.builder()        
                .name("ha-vpn-tunnel1")
                .region("us-central1")
                .vpnGateway(haGateway.id())
                .peerExternalGateway(externalGateway.id())
                .peerExternalGatewayInterface(0)
                .sharedSecret("a secret message")
                .router(router1.id())
                .vpnGatewayInterface(0)
                .build());
    
            var tunnel2 = new VPNTunnel("tunnel2", VPNTunnelArgs.builder()        
                .name("ha-vpn-tunnel2")
                .region("us-central1")
                .vpnGateway(haGateway.id())
                .peerExternalGateway(externalGateway.id())
                .peerExternalGatewayInterface(0)
                .sharedSecret("a secret message")
                .router(router1.id().applyValue(id -> String.format(" %s", id)))
                .vpnGatewayInterface(1)
                .build());
    
            var router1Interface1 = new RouterInterface("router1Interface1", RouterInterfaceArgs.builder()        
                .name("router1-interface1")
                .router(router1.name())
                .region("us-central1")
                .ipRange("169.254.0.1/30")
                .vpnTunnel(tunnel1.name())
                .build());
    
            var router1Peer1 = new RouterPeer("router1Peer1", RouterPeerArgs.builder()        
                .name("router1-peer1")
                .router(router1.name())
                .region("us-central1")
                .peerIpAddress("169.254.0.2")
                .peerAsn(64515)
                .advertisedRoutePriority(100)
                .interface_(router1Interface1.name())
                .build());
    
            var router1Interface2 = new RouterInterface("router1Interface2", RouterInterfaceArgs.builder()        
                .name("router1-interface2")
                .router(router1.name())
                .region("us-central1")
                .ipRange("169.254.1.1/30")
                .vpnTunnel(tunnel2.name())
                .build());
    
            var router1Peer2 = new RouterPeer("router1Peer2", RouterPeerArgs.builder()        
                .name("router1-peer2")
                .router(router1.name())
                .region("us-central1")
                .peerIpAddress("169.254.1.2")
                .peerAsn(64515)
                .advertisedRoutePriority(100)
                .interface_(router1Interface2.name())
                .build());
    
        }
    }
    
    resources:
      haGateway:
        type: gcp:compute:HaVpnGateway
        name: ha_gateway
        properties:
          region: us-central1
          name: ha-vpn
          network: ${network.id}
      externalGateway:
        type: gcp:compute:ExternalVpnGateway
        name: external_gateway
        properties:
          name: external-gateway
          redundancyType: SINGLE_IP_INTERNALLY_REDUNDANT
          description: An externally managed VPN gateway
          interfaces:
            - id: 0
              ipAddress: 8.8.8.8
      network:
        type: gcp:compute:Network
        properties:
          name: network-1
          routingMode: GLOBAL
          autoCreateSubnetworks: false
      networkSubnet1:
        type: gcp:compute:Subnetwork
        name: network_subnet1
        properties:
          name: ha-vpn-subnet-1
          ipCidrRange: 10.0.1.0/24
          region: us-central1
          network: ${network.id}
      networkSubnet2:
        type: gcp:compute:Subnetwork
        name: network_subnet2
        properties:
          name: ha-vpn-subnet-2
          ipCidrRange: 10.0.2.0/24
          region: us-west1
          network: ${network.id}
      router1:
        type: gcp:compute:Router
        properties:
          name: ha-vpn-router1
          network: ${network.name}
          bgp:
            asn: 64514
      tunnel1:
        type: gcp:compute:VPNTunnel
        properties:
          name: ha-vpn-tunnel1
          region: us-central1
          vpnGateway: ${haGateway.id}
          peerExternalGateway: ${externalGateway.id}
          peerExternalGatewayInterface: 0
          sharedSecret: a secret message
          router: ${router1.id}
          vpnGatewayInterface: 0
      tunnel2:
        type: gcp:compute:VPNTunnel
        properties:
          name: ha-vpn-tunnel2
          region: us-central1
          vpnGateway: ${haGateway.id}
          peerExternalGateway: ${externalGateway.id}
          peerExternalGatewayInterface: 0
          sharedSecret: a secret message
          router: ' ${router1.id}'
          vpnGatewayInterface: 1
      router1Interface1:
        type: gcp:compute:RouterInterface
        name: router1_interface1
        properties:
          name: router1-interface1
          router: ${router1.name}
          region: us-central1
          ipRange: 169.254.0.1/30
          vpnTunnel: ${tunnel1.name}
      router1Peer1:
        type: gcp:compute:RouterPeer
        name: router1_peer1
        properties:
          name: router1-peer1
          router: ${router1.name}
          region: us-central1
          peerIpAddress: 169.254.0.2
          peerAsn: 64515
          advertisedRoutePriority: 100
          interface: ${router1Interface1.name}
      router1Interface2:
        type: gcp:compute:RouterInterface
        name: router1_interface2
        properties:
          name: router1-interface2
          router: ${router1.name}
          region: us-central1
          ipRange: 169.254.1.1/30
          vpnTunnel: ${tunnel2.name}
      router1Peer2:
        type: gcp:compute:RouterPeer
        name: router1_peer2
        properties:
          name: router1-peer2
          router: ${router1.name}
          region: us-central1
          peerIpAddress: 169.254.1.2
          peerAsn: 64515
          advertisedRoutePriority: 100
          interface: ${router1Interface2.name}
    

    Create ExternalVpnGateway Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ExternalVpnGateway(name: string, args?: ExternalVpnGatewayArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalVpnGateway(resource_name: str,
                           args: Optional[ExternalVpnGatewayArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ExternalVpnGateway(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           description: Optional[str] = None,
                           interfaces: Optional[Sequence[ExternalVpnGatewayInterfaceArgs]] = None,
                           labels: Optional[Mapping[str, str]] = None,
                           name: Optional[str] = None,
                           project: Optional[str] = None,
                           redundancy_type: Optional[str] = None)
    func NewExternalVpnGateway(ctx *Context, name string, args *ExternalVpnGatewayArgs, opts ...ResourceOption) (*ExternalVpnGateway, error)
    public ExternalVpnGateway(string name, ExternalVpnGatewayArgs? args = null, CustomResourceOptions? opts = null)
    public ExternalVpnGateway(String name, ExternalVpnGatewayArgs args)
    public ExternalVpnGateway(String name, ExternalVpnGatewayArgs args, CustomResourceOptions options)
    
    type: gcp:compute:ExternalVpnGateway
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ExternalVpnGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ExternalVpnGatewayArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ExternalVpnGatewayArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExternalVpnGatewayArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExternalVpnGatewayArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var externalVpnGatewayResource = new Gcp.Compute.ExternalVpnGateway("externalVpnGatewayResource", new()
    {
        Description = "string",
        Interfaces = new[]
        {
            new Gcp.Compute.Inputs.ExternalVpnGatewayInterfaceArgs
            {
                Id = 0,
                IpAddress = "string",
            },
        },
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
        Project = "string",
        RedundancyType = "string",
    });
    
    example, err := compute.NewExternalVpnGateway(ctx, "externalVpnGatewayResource", &compute.ExternalVpnGatewayArgs{
    	Description: pulumi.String("string"),
    	Interfaces: compute.ExternalVpnGatewayInterfaceArray{
    		&compute.ExternalVpnGatewayInterfaceArgs{
    			Id:        pulumi.Int(0),
    			IpAddress: pulumi.String("string"),
    		},
    	},
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name:           pulumi.String("string"),
    	Project:        pulumi.String("string"),
    	RedundancyType: pulumi.String("string"),
    })
    
    var externalVpnGatewayResource = new ExternalVpnGateway("externalVpnGatewayResource", ExternalVpnGatewayArgs.builder()        
        .description("string")
        .interfaces(ExternalVpnGatewayInterfaceArgs.builder()
            .id(0)
            .ipAddress("string")
            .build())
        .labels(Map.of("string", "string"))
        .name("string")
        .project("string")
        .redundancyType("string")
        .build());
    
    external_vpn_gateway_resource = gcp.compute.ExternalVpnGateway("externalVpnGatewayResource",
        description="string",
        interfaces=[gcp.compute.ExternalVpnGatewayInterfaceArgs(
            id=0,
            ip_address="string",
        )],
        labels={
            "string": "string",
        },
        name="string",
        project="string",
        redundancy_type="string")
    
    const externalVpnGatewayResource = new gcp.compute.ExternalVpnGateway("externalVpnGatewayResource", {
        description: "string",
        interfaces: [{
            id: 0,
            ipAddress: "string",
        }],
        labels: {
            string: "string",
        },
        name: "string",
        project: "string",
        redundancyType: "string",
    });
    
    type: gcp:compute:ExternalVpnGateway
    properties:
        description: string
        interfaces:
            - id: 0
              ipAddress: string
        labels:
            string: string
        name: string
        project: string
        redundancyType: string
    

    ExternalVpnGateway Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ExternalVpnGateway resource accepts the following input properties:

    Description string
    An optional description of this resource.
    Interfaces List<ExternalVpnGatewayInterface>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    Labels Dictionary<string, string>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    RedundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    Description string
    An optional description of this resource.
    Interfaces []ExternalVpnGatewayInterfaceArgs
    A list of interfaces on this external VPN gateway. Structure is documented below.
    Labels map[string]string
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    RedundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    description String
    An optional description of this resource.
    interfaces List<ExternalVpnGatewayInterface>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labels Map<String,String>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    redundancyType String
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    description string
    An optional description of this resource.
    interfaces ExternalVpnGatewayInterface[]
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labels {[key: string]: string}
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    redundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    description str
    An optional description of this resource.
    interfaces Sequence[ExternalVpnGatewayInterfaceArgs]
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labels Mapping[str, str]
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name str
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    redundancy_type str
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    description String
    An optional description of this resource.
    interfaces List<Property Map>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labels Map<String>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    redundancyType String
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ExternalVpnGateway resource produces the following output properties:

    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    LabelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The URI of the created resource.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    LabelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    SelfLink string
    The URI of the created resource.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    labelFingerprint String
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The URI of the created resource.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    labelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink string
    The URI of the created resource.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    label_fingerprint str
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    self_link str
    The URI of the created resource.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    labelFingerprint String
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    selfLink String
    The URI of the created resource.

    Look up Existing ExternalVpnGateway Resource

    Get an existing ExternalVpnGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ExternalVpnGatewayState, opts?: CustomResourceOptions): ExternalVpnGateway
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            interfaces: Optional[Sequence[ExternalVpnGatewayInterfaceArgs]] = None,
            label_fingerprint: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            redundancy_type: Optional[str] = None,
            self_link: Optional[str] = None) -> ExternalVpnGateway
    func GetExternalVpnGateway(ctx *Context, name string, id IDInput, state *ExternalVpnGatewayState, opts ...ResourceOption) (*ExternalVpnGateway, error)
    public static ExternalVpnGateway Get(string name, Input<string> id, ExternalVpnGatewayState? state, CustomResourceOptions? opts = null)
    public static ExternalVpnGateway get(String name, Output<String> id, ExternalVpnGatewayState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    An optional description of this resource.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Interfaces List<ExternalVpnGatewayInterface>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    LabelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    Labels Dictionary<string, string>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    RedundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    SelfLink string
    The URI of the created resource.
    Description string
    An optional description of this resource.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Interfaces []ExternalVpnGatewayInterfaceArgs
    A list of interfaces on this external VPN gateway. Structure is documented below.
    LabelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    Labels map[string]string
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    RedundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    SelfLink string
    The URI of the created resource.
    description String
    An optional description of this resource.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interfaces List<ExternalVpnGatewayInterface>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labelFingerprint String
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    labels Map<String,String>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    redundancyType String
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    selfLink String
    The URI of the created resource.
    description string
    An optional description of this resource.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interfaces ExternalVpnGatewayInterface[]
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labelFingerprint string
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    labels {[key: string]: string}
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    redundancyType string
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    selfLink string
    The URI of the created resource.
    description str
    An optional description of this resource.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interfaces Sequence[ExternalVpnGatewayInterfaceArgs]
    A list of interfaces on this external VPN gateway. Structure is documented below.
    label_fingerprint str
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    labels Mapping[str, str]
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name str
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    redundancy_type str
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    self_link str
    The URI of the created resource.
    description String
    An optional description of this resource.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    interfaces List<Property Map>
    A list of interfaces on this external VPN gateway. Structure is documented below.
    labelFingerprint String
    The fingerprint used for optimistic locking of this resource. Used internally during updates.
    labels Map<String>
    Labels for the external VPN gateway resource. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.


    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    redundancyType String
    Indicates the redundancy type of this external VPN gateway Possible values are: FOUR_IPS_REDUNDANCY, SINGLE_IP_INTERNALLY_REDUNDANT, TWO_IPS_REDUNDANCY.
    selfLink String
    The URI of the created resource.

    Supporting Types

    ExternalVpnGatewayInterface, ExternalVpnGatewayInterfaceArgs

    Id int
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    IpAddress string
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.
    Id int
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    IpAddress string
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.
    id Integer
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    ipAddress String
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.
    id number
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    ipAddress string
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.
    id int
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    ip_address str
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.
    id Number
    The numeric ID for this interface. Allowed values are based on the redundancy type of this external VPN gateway

    • 0 - SINGLE_IP_INTERNALLY_REDUNDANT
    • 0, 1 - TWO_IPS_REDUNDANCY
    • 0, 1, 2, 3 - FOUR_IPS_REDUNDANCY
    ipAddress String
    IP address of the interface in the external VPN gateway. Only IPv4 is supported. This IP address can be either from your on-premise gateway or another Cloud provider's VPN gateway, it cannot be an IP address from Google Compute Engine.

    Import

    ExternalVpnGateway can be imported using any of these accepted formats:

    • projects/{{project}}/global/externalVpnGateways/{{name}}

    • {{project}}/{{name}}

    • {{name}}

    When using the pulumi import command, ExternalVpnGateway can be imported using one of the formats above. For example:

    $ pulumi import gcp:compute/externalVpnGateway:ExternalVpnGateway default projects/{{project}}/global/externalVpnGateways/{{name}}
    
    $ pulumi import gcp:compute/externalVpnGateway:ExternalVpnGateway default {{project}}/{{name}}
    
    $ pulumi import gcp:compute/externalVpnGateway:ExternalVpnGateway default {{name}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi