1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. VpnGateway
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.network.VpnGateway

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

VpnGateway Resource.

Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01.

Other available API versions: 2018-06-01, 2018-07-01, 2018-08-01, 2018-10-01, 2018-11-01, 2018-12-01, 2019-02-01, 2019-04-01, 2019-06-01, 2019-07-01, 2019-08-01, 2019-09-01, 2019-11-01, 2019-12-01, 2020-03-01, 2020-04-01, 2020-05-01, 2020-06-01, 2020-07-01, 2020-08-01, 2020-11-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-08-01, 2022-01-01, 2022-05-01, 2022-07-01, 2022-09-01, 2022-11-01, 2023-02-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native network [ApiVersion]. See the version guide for details.

Example Usage

VpnGatewayPut

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var vpnGateway = new AzureNative.Network.VpnGateway("vpnGateway", new()
    {
        BgpSettings = new AzureNative.Network.Inputs.BgpSettingsArgs
        {
            Asn = 65515,
            BgpPeeringAddresses = new[]
            {
                new AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressArgs
                {
                    CustomBgpIpAddresses = new[]
                    {
                        "169.254.21.5",
                    },
                    IpconfigurationId = "Instance0",
                },
                new AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressArgs
                {
                    CustomBgpIpAddresses = new[]
                    {
                        "169.254.21.10",
                    },
                    IpconfigurationId = "Instance1",
                },
            },
            PeerWeight = 0,
        },
        Connections = new[]
        {
            new AzureNative.Network.Inputs.VpnConnectionArgs
            {
                Name = "vpnConnection1",
                RemoteVpnSite = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1",
                },
                VpnLinkConnections = new[]
                {
                    new AzureNative.Network.Inputs.VpnSiteLinkConnectionArgs
                    {
                        ConnectionBandwidth = 200,
                        EgressNatRules = new[]
                        {
                            new AzureNative.Network.Inputs.SubResourceArgs
                            {
                                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03",
                            },
                        },
                        Name = "Connection-Link1",
                        SharedKey = "key",
                        VpnConnectionProtocolType = AzureNative.Network.VirtualNetworkGatewayConnectionProtocol.IKEv2,
                        VpnSiteLink = new AzureNative.Network.Inputs.SubResourceArgs
                        {
                            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1",
                        },
                    },
                },
            },
        },
        EnableBgpRouteTranslationForNat = false,
        GatewayName = "gateway1",
        IsRoutingPreferenceInternet = false,
        Location = "westcentralus",
        NatRules = new[]
        {
            new AzureNative.Network.Inputs.VpnGatewayNatRuleArgs
            {
                ExternalMappings = new[]
                {
                    new AzureNative.Network.Inputs.VpnNatRuleMappingArgs
                    {
                        AddressSpace = "192.168.0.0/26",
                    },
                },
                InternalMappings = new[]
                {
                    new AzureNative.Network.Inputs.VpnNatRuleMappingArgs
                    {
                        AddressSpace = "0.0.0.0/26",
                    },
                },
                IpConfigurationId = "",
                Mode = AzureNative.Network.VpnNatRuleMode.EgressSnat,
                Name = "nat03",
                Type = AzureNative.Network.VpnNatRuleType.Static,
            },
        },
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "key1", "value1" },
        },
        VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1",
        },
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewVpnGateway(ctx, "vpnGateway", &network.VpnGatewayArgs{
			BgpSettings: &network.BgpSettingsArgs{
				Asn: pulumi.Float64(65515),
				BgpPeeringAddresses: network.IPConfigurationBgpPeeringAddressArray{
					&network.IPConfigurationBgpPeeringAddressArgs{
						CustomBgpIpAddresses: pulumi.StringArray{
							pulumi.String("169.254.21.5"),
						},
						IpconfigurationId: pulumi.String("Instance0"),
					},
					&network.IPConfigurationBgpPeeringAddressArgs{
						CustomBgpIpAddresses: pulumi.StringArray{
							pulumi.String("169.254.21.10"),
						},
						IpconfigurationId: pulumi.String("Instance1"),
					},
				},
				PeerWeight: pulumi.Int(0),
			},
			Connections: network.VpnConnectionTypeArray{
				&network.VpnConnectionTypeArgs{
					Name: pulumi.String("vpnConnection1"),
					RemoteVpnSite: &network.SubResourceArgs{
						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1"),
					},
					VpnLinkConnections: network.VpnSiteLinkConnectionArray{
						&network.VpnSiteLinkConnectionArgs{
							ConnectionBandwidth: pulumi.Int(200),
							EgressNatRules: network.SubResourceArray{
								&network.SubResourceArgs{
									Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03"),
								},
							},
							Name:                      pulumi.String("Connection-Link1"),
							SharedKey:                 pulumi.String("key"),
							VpnConnectionProtocolType: pulumi.String(network.VirtualNetworkGatewayConnectionProtocolIKEv2),
							VpnSiteLink: &network.SubResourceArgs{
								Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1"),
							},
						},
					},
				},
			},
			EnableBgpRouteTranslationForNat: pulumi.Bool(false),
			GatewayName:                     pulumi.String("gateway1"),
			IsRoutingPreferenceInternet:     pulumi.Bool(false),
			Location:                        pulumi.String("westcentralus"),
			NatRules: network.VpnGatewayNatRuleArray{
				&network.VpnGatewayNatRuleArgs{
					ExternalMappings: network.VpnNatRuleMappingArray{
						&network.VpnNatRuleMappingArgs{
							AddressSpace: pulumi.String("192.168.0.0/26"),
						},
					},
					InternalMappings: network.VpnNatRuleMappingArray{
						&network.VpnNatRuleMappingArgs{
							AddressSpace: pulumi.String("0.0.0.0/26"),
						},
					},
					IpConfigurationId: pulumi.String(""),
					Mode:              pulumi.String(network.VpnNatRuleModeEgressSnat),
					Name:              pulumi.String("nat03"),
					Type:              pulumi.String(network.VpnNatRuleTypeStatic),
				},
			},
			ResourceGroupName: pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			VirtualHub: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.VpnGateway;
import com.pulumi.azurenative.network.VpnGatewayArgs;
import com.pulumi.azurenative.network.inputs.BgpSettingsArgs;
import com.pulumi.azurenative.network.inputs.VpnConnectionArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
import com.pulumi.azurenative.network.inputs.VpnGatewayNatRuleArgs;
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 vpnGateway = new VpnGateway("vpnGateway", VpnGatewayArgs.builder()
            .bgpSettings(BgpSettingsArgs.builder()
                .asn(65515.0)
                .bgpPeeringAddresses(                
                    IPConfigurationBgpPeeringAddressArgs.builder()
                        .customBgpIpAddresses("169.254.21.5")
                        .ipconfigurationId("Instance0")
                        .build(),
                    IPConfigurationBgpPeeringAddressArgs.builder()
                        .customBgpIpAddresses("169.254.21.10")
                        .ipconfigurationId("Instance1")
                        .build())
                .peerWeight(0)
                .build())
            .connections(VpnConnectionArgs.builder()
                .name("vpnConnection1")
                .remoteVpnSite(SubResourceArgs.builder()
                    .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1")
                    .build())
                .vpnLinkConnections(VpnSiteLinkConnectionArgs.builder()
                    .connectionBandwidth(200)
                    .egressNatRules(SubResourceArgs.builder()
                        .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03")
                        .build())
                    .name("Connection-Link1")
                    .sharedKey("key")
                    .vpnConnectionProtocolType("IKEv2")
                    .vpnSiteLink(SubResourceArgs.builder()
                        .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1")
                        .build())
                    .build())
                .build())
            .enableBgpRouteTranslationForNat(false)
            .gatewayName("gateway1")
            .isRoutingPreferenceInternet(false)
            .location("westcentralus")
            .natRules(VpnGatewayNatRuleArgs.builder()
                .externalMappings(VpnNatRuleMappingArgs.builder()
                    .addressSpace("192.168.0.0/26")
                    .build())
                .internalMappings(VpnNatRuleMappingArgs.builder()
                    .addressSpace("0.0.0.0/26")
                    .build())
                .ipConfigurationId("")
                .mode("EgressSnat")
                .name("nat03")
                .type("Static")
                .build())
            .resourceGroupName("rg1")
            .tags(Map.of("key1", "value1"))
            .virtualHub(SubResourceArgs.builder()
                .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const vpnGateway = new azure_native.network.VpnGateway("vpnGateway", {
    bgpSettings: {
        asn: 65515,
        bgpPeeringAddresses: [
            {
                customBgpIpAddresses: ["169.254.21.5"],
                ipconfigurationId: "Instance0",
            },
            {
                customBgpIpAddresses: ["169.254.21.10"],
                ipconfigurationId: "Instance1",
            },
        ],
        peerWeight: 0,
    },
    connections: [{
        name: "vpnConnection1",
        remoteVpnSite: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1",
        },
        vpnLinkConnections: [{
            connectionBandwidth: 200,
            egressNatRules: [{
                id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03",
            }],
            name: "Connection-Link1",
            sharedKey: "key",
            vpnConnectionProtocolType: azure_native.network.VirtualNetworkGatewayConnectionProtocol.IKEv2,
            vpnSiteLink: {
                id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1",
            },
        }],
    }],
    enableBgpRouteTranslationForNat: false,
    gatewayName: "gateway1",
    isRoutingPreferenceInternet: false,
    location: "westcentralus",
    natRules: [{
        externalMappings: [{
            addressSpace: "192.168.0.0/26",
        }],
        internalMappings: [{
            addressSpace: "0.0.0.0/26",
        }],
        ipConfigurationId: "",
        mode: azure_native.network.VpnNatRuleMode.EgressSnat,
        name: "nat03",
        type: azure_native.network.VpnNatRuleType.Static,
    }],
    resourceGroupName: "rg1",
    tags: {
        key1: "value1",
    },
    virtualHub: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

vpn_gateway = azure_native.network.VpnGateway("vpnGateway",
    bgp_settings={
        "asn": 65515,
        "bgp_peering_addresses": [
            {
                "custom_bgp_ip_addresses": ["169.254.21.5"],
                "ipconfiguration_id": "Instance0",
            },
            {
                "custom_bgp_ip_addresses": ["169.254.21.10"],
                "ipconfiguration_id": "Instance1",
            },
        ],
        "peer_weight": 0,
    },
    connections=[{
        "name": "vpnConnection1",
        "remote_vpn_site": {
            "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1",
        },
        "vpn_link_connections": [{
            "connection_bandwidth": 200,
            "egress_nat_rules": [{
                "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03",
            }],
            "name": "Connection-Link1",
            "shared_key": "key",
            "vpn_connection_protocol_type": azure_native.network.VirtualNetworkGatewayConnectionProtocol.IK_EV2,
            "vpn_site_link": {
                "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1",
            },
        }],
    }],
    enable_bgp_route_translation_for_nat=False,
    gateway_name="gateway1",
    is_routing_preference_internet=False,
    location="westcentralus",
    nat_rules=[{
        "external_mappings": [{
            "address_space": "192.168.0.0/26",
        }],
        "internal_mappings": [{
            "address_space": "0.0.0.0/26",
        }],
        "ip_configuration_id": "",
        "mode": azure_native.network.VpnNatRuleMode.EGRESS_SNAT,
        "name": "nat03",
        "type": azure_native.network.VpnNatRuleType.STATIC,
    }],
    resource_group_name="rg1",
    tags={
        "key1": "value1",
    },
    virtual_hub={
        "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1",
    })
Copy
resources:
  vpnGateway:
    type: azure-native:network:VpnGateway
    properties:
      bgpSettings:
        asn: 65515
        bgpPeeringAddresses:
          - customBgpIpAddresses:
              - 169.254.21.5
            ipconfigurationId: Instance0
          - customBgpIpAddresses:
              - 169.254.21.10
            ipconfigurationId: Instance1
        peerWeight: 0
      connections:
        - name: vpnConnection1
          remoteVpnSite:
            id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1
          vpnLinkConnections:
            - connectionBandwidth: 200
              egressNatRules:
                - id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnGateways/gateway1/natRules/nat03
              name: Connection-Link1
              sharedKey: key
              vpnConnectionProtocolType: IKEv2
              vpnSiteLink:
                id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnSites/vpnSite1/vpnSiteLinks/siteLink1
      enableBgpRouteTranslationForNat: false
      gatewayName: gateway1
      isRoutingPreferenceInternet: false
      location: westcentralus
      natRules:
        - externalMappings:
            - addressSpace: 192.168.0.0/26
          internalMappings:
            - addressSpace: 0.0.0.0/26
          ipConfigurationId: ""
          mode: EgressSnat
          name: nat03
          type: Static
      resourceGroupName: rg1
      tags:
        key1: value1
      virtualHub:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1
Copy

Create VpnGateway Resource

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

Constructor syntax

new VpnGateway(name: string, args: VpnGatewayArgs, opts?: CustomResourceOptions);
@overload
def VpnGateway(resource_name: str,
               args: VpnGatewayArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def VpnGateway(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               bgp_settings: Optional[BgpSettingsArgs] = None,
               connections: Optional[Sequence[VpnConnectionArgs]] = None,
               enable_bgp_route_translation_for_nat: Optional[bool] = None,
               gateway_name: Optional[str] = None,
               id: Optional[str] = None,
               is_routing_preference_internet: Optional[bool] = None,
               location: Optional[str] = None,
               nat_rules: Optional[Sequence[VpnGatewayNatRuleArgs]] = None,
               tags: Optional[Mapping[str, str]] = None,
               virtual_hub: Optional[SubResourceArgs] = None,
               vpn_gateway_scale_unit: Optional[int] = None)
func NewVpnGateway(ctx *Context, name string, args VpnGatewayArgs, opts ...ResourceOption) (*VpnGateway, error)
public VpnGateway(string name, VpnGatewayArgs args, CustomResourceOptions? opts = null)
public VpnGateway(String name, VpnGatewayArgs args)
public VpnGateway(String name, VpnGatewayArgs args, CustomResourceOptions options)
type: azure-native:network:VpnGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Constructor example

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

var vpnGatewayResource = new AzureNative.Network.VpnGateway("vpnGatewayResource", new()
{
    ResourceGroupName = "string",
    BgpSettings = new AzureNative.Network.Inputs.BgpSettingsArgs
    {
        Asn = 0,
        BgpPeeringAddress = "string",
        BgpPeeringAddresses = new[]
        {
            new AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressArgs
            {
                CustomBgpIpAddresses = new[]
                {
                    "string",
                },
                IpconfigurationId = "string",
            },
        },
        PeerWeight = 0,
    },
    Connections = new[]
    {
        new AzureNative.Network.Inputs.VpnConnectionArgs
        {
            ConnectionBandwidth = 0,
            DpdTimeoutSeconds = 0,
            EnableBgp = false,
            EnableInternetSecurity = false,
            EnableRateLimiting = false,
            Id = "string",
            IpsecPolicies = new[]
            {
                new AzureNative.Network.Inputs.IpsecPolicyArgs
                {
                    DhGroup = "string",
                    IkeEncryption = "string",
                    IkeIntegrity = "string",
                    IpsecEncryption = "string",
                    IpsecIntegrity = "string",
                    PfsGroup = "string",
                    SaDataSizeKilobytes = 0,
                    SaLifeTimeSeconds = 0,
                },
            },
            Name = "string",
            RemoteVpnSite = new AzureNative.Network.Inputs.SubResourceArgs
            {
                Id = "string",
            },
            RoutingConfiguration = new AzureNative.Network.Inputs.RoutingConfigurationArgs
            {
                AssociatedRouteTable = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                InboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                OutboundRouteMap = new AzureNative.Network.Inputs.SubResourceArgs
                {
                    Id = "string",
                },
                PropagatedRouteTables = new AzureNative.Network.Inputs.PropagatedRouteTableArgs
                {
                    Ids = new[]
                    {
                        new AzureNative.Network.Inputs.SubResourceArgs
                        {
                            Id = "string",
                        },
                    },
                    Labels = new[]
                    {
                        "string",
                    },
                },
                VnetRoutes = new AzureNative.Network.Inputs.VnetRouteArgs
                {
                    StaticRoutes = new[]
                    {
                        new AzureNative.Network.Inputs.StaticRouteArgs
                        {
                            AddressPrefixes = new[]
                            {
                                "string",
                            },
                            Name = "string",
                            NextHopIpAddress = "string",
                        },
                    },
                    StaticRoutesConfig = new AzureNative.Network.Inputs.StaticRoutesConfigArgs
                    {
                        VnetLocalRouteOverrideCriteria = "string",
                    },
                },
            },
            RoutingWeight = 0,
            SharedKey = "string",
            TrafficSelectorPolicies = new[]
            {
                new AzureNative.Network.Inputs.TrafficSelectorPolicyArgs
                {
                    LocalAddressRanges = new[]
                    {
                        "string",
                    },
                    RemoteAddressRanges = new[]
                    {
                        "string",
                    },
                },
            },
            UseLocalAzureIpAddress = false,
            UsePolicyBasedTrafficSelectors = false,
            VpnConnectionProtocolType = "string",
            VpnLinkConnections = new[]
            {
                new AzureNative.Network.Inputs.VpnSiteLinkConnectionArgs
                {
                    ConnectionBandwidth = 0,
                    DpdTimeoutSeconds = 0,
                    EgressNatRules = new[]
                    {
                        new AzureNative.Network.Inputs.SubResourceArgs
                        {
                            Id = "string",
                        },
                    },
                    EnableBgp = false,
                    EnableRateLimiting = false,
                    Id = "string",
                    IngressNatRules = new[]
                    {
                        new AzureNative.Network.Inputs.SubResourceArgs
                        {
                            Id = "string",
                        },
                    },
                    IpsecPolicies = new[]
                    {
                        new AzureNative.Network.Inputs.IpsecPolicyArgs
                        {
                            DhGroup = "string",
                            IkeEncryption = "string",
                            IkeIntegrity = "string",
                            IpsecEncryption = "string",
                            IpsecIntegrity = "string",
                            PfsGroup = "string",
                            SaDataSizeKilobytes = 0,
                            SaLifeTimeSeconds = 0,
                        },
                    },
                    Name = "string",
                    RoutingWeight = 0,
                    SharedKey = "string",
                    UseLocalAzureIpAddress = false,
                    UsePolicyBasedTrafficSelectors = false,
                    VpnConnectionProtocolType = "string",
                    VpnGatewayCustomBgpAddresses = new[]
                    {
                        new AzureNative.Network.Inputs.GatewayCustomBgpIpAddressIpConfigurationArgs
                        {
                            CustomBgpIpAddress = "string",
                            IpConfigurationId = "string",
                        },
                    },
                    VpnLinkConnectionMode = "string",
                    VpnSiteLink = new AzureNative.Network.Inputs.SubResourceArgs
                    {
                        Id = "string",
                    },
                },
            },
        },
    },
    EnableBgpRouteTranslationForNat = false,
    GatewayName = "string",
    Id = "string",
    IsRoutingPreferenceInternet = false,
    Location = "string",
    NatRules = new[]
    {
        new AzureNative.Network.Inputs.VpnGatewayNatRuleArgs
        {
            ExternalMappings = new[]
            {
                new AzureNative.Network.Inputs.VpnNatRuleMappingArgs
                {
                    AddressSpace = "string",
                    PortRange = "string",
                },
            },
            Id = "string",
            InternalMappings = new[]
            {
                new AzureNative.Network.Inputs.VpnNatRuleMappingArgs
                {
                    AddressSpace = "string",
                    PortRange = "string",
                },
            },
            IpConfigurationId = "string",
            Mode = "string",
            Name = "string",
            Type = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    VpnGatewayScaleUnit = 0,
});
Copy
example, err := network.NewVpnGateway(ctx, "vpnGatewayResource", &network.VpnGatewayArgs{
	ResourceGroupName: pulumi.String("string"),
	BgpSettings: &network.BgpSettingsArgs{
		Asn:               pulumi.Float64(0),
		BgpPeeringAddress: pulumi.String("string"),
		BgpPeeringAddresses: network.IPConfigurationBgpPeeringAddressArray{
			&network.IPConfigurationBgpPeeringAddressArgs{
				CustomBgpIpAddresses: pulumi.StringArray{
					pulumi.String("string"),
				},
				IpconfigurationId: pulumi.String("string"),
			},
		},
		PeerWeight: pulumi.Int(0),
	},
	Connections: network.VpnConnectionTypeArray{
		&network.VpnConnectionTypeArgs{
			ConnectionBandwidth:    pulumi.Int(0),
			DpdTimeoutSeconds:      pulumi.Int(0),
			EnableBgp:              pulumi.Bool(false),
			EnableInternetSecurity: pulumi.Bool(false),
			EnableRateLimiting:     pulumi.Bool(false),
			Id:                     pulumi.String("string"),
			IpsecPolicies: network.IpsecPolicyArray{
				&network.IpsecPolicyArgs{
					DhGroup:             pulumi.String("string"),
					IkeEncryption:       pulumi.String("string"),
					IkeIntegrity:        pulumi.String("string"),
					IpsecEncryption:     pulumi.String("string"),
					IpsecIntegrity:      pulumi.String("string"),
					PfsGroup:            pulumi.String("string"),
					SaDataSizeKilobytes: pulumi.Int(0),
					SaLifeTimeSeconds:   pulumi.Int(0),
				},
			},
			Name: pulumi.String("string"),
			RemoteVpnSite: &network.SubResourceArgs{
				Id: pulumi.String("string"),
			},
			RoutingConfiguration: &network.RoutingConfigurationArgs{
				AssociatedRouteTable: &network.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				InboundRouteMap: &network.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				OutboundRouteMap: &network.SubResourceArgs{
					Id: pulumi.String("string"),
				},
				PropagatedRouteTables: &network.PropagatedRouteTableArgs{
					Ids: network.SubResourceArray{
						&network.SubResourceArgs{
							Id: pulumi.String("string"),
						},
					},
					Labels: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
				VnetRoutes: &network.VnetRouteArgs{
					StaticRoutes: network.StaticRouteArray{
						&network.StaticRouteArgs{
							AddressPrefixes: pulumi.StringArray{
								pulumi.String("string"),
							},
							Name:             pulumi.String("string"),
							NextHopIpAddress: pulumi.String("string"),
						},
					},
					StaticRoutesConfig: &network.StaticRoutesConfigArgs{
						VnetLocalRouteOverrideCriteria: pulumi.String("string"),
					},
				},
			},
			RoutingWeight: pulumi.Int(0),
			SharedKey:     pulumi.String("string"),
			TrafficSelectorPolicies: network.TrafficSelectorPolicyArray{
				&network.TrafficSelectorPolicyArgs{
					LocalAddressRanges: pulumi.StringArray{
						pulumi.String("string"),
					},
					RemoteAddressRanges: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
			UseLocalAzureIpAddress:         pulumi.Bool(false),
			UsePolicyBasedTrafficSelectors: pulumi.Bool(false),
			VpnConnectionProtocolType:      pulumi.String("string"),
			VpnLinkConnections: network.VpnSiteLinkConnectionArray{
				&network.VpnSiteLinkConnectionArgs{
					ConnectionBandwidth: pulumi.Int(0),
					DpdTimeoutSeconds:   pulumi.Int(0),
					EgressNatRules: network.SubResourceArray{
						&network.SubResourceArgs{
							Id: pulumi.String("string"),
						},
					},
					EnableBgp:          pulumi.Bool(false),
					EnableRateLimiting: pulumi.Bool(false),
					Id:                 pulumi.String("string"),
					IngressNatRules: network.SubResourceArray{
						&network.SubResourceArgs{
							Id: pulumi.String("string"),
						},
					},
					IpsecPolicies: network.IpsecPolicyArray{
						&network.IpsecPolicyArgs{
							DhGroup:             pulumi.String("string"),
							IkeEncryption:       pulumi.String("string"),
							IkeIntegrity:        pulumi.String("string"),
							IpsecEncryption:     pulumi.String("string"),
							IpsecIntegrity:      pulumi.String("string"),
							PfsGroup:            pulumi.String("string"),
							SaDataSizeKilobytes: pulumi.Int(0),
							SaLifeTimeSeconds:   pulumi.Int(0),
						},
					},
					Name:                           pulumi.String("string"),
					RoutingWeight:                  pulumi.Int(0),
					SharedKey:                      pulumi.String("string"),
					UseLocalAzureIpAddress:         pulumi.Bool(false),
					UsePolicyBasedTrafficSelectors: pulumi.Bool(false),
					VpnConnectionProtocolType:      pulumi.String("string"),
					VpnGatewayCustomBgpAddresses: network.GatewayCustomBgpIpAddressIpConfigurationArray{
						&network.GatewayCustomBgpIpAddressIpConfigurationArgs{
							CustomBgpIpAddress: pulumi.String("string"),
							IpConfigurationId:  pulumi.String("string"),
						},
					},
					VpnLinkConnectionMode: pulumi.String("string"),
					VpnSiteLink: &network.SubResourceArgs{
						Id: pulumi.String("string"),
					},
				},
			},
		},
	},
	EnableBgpRouteTranslationForNat: pulumi.Bool(false),
	GatewayName:                     pulumi.String("string"),
	Id:                              pulumi.String("string"),
	IsRoutingPreferenceInternet:     pulumi.Bool(false),
	Location:                        pulumi.String("string"),
	NatRules: network.VpnGatewayNatRuleArray{
		&network.VpnGatewayNatRuleArgs{
			ExternalMappings: network.VpnNatRuleMappingArray{
				&network.VpnNatRuleMappingArgs{
					AddressSpace: pulumi.String("string"),
					PortRange:    pulumi.String("string"),
				},
			},
			Id: pulumi.String("string"),
			InternalMappings: network.VpnNatRuleMappingArray{
				&network.VpnNatRuleMappingArgs{
					AddressSpace: pulumi.String("string"),
					PortRange:    pulumi.String("string"),
				},
			},
			IpConfigurationId: pulumi.String("string"),
			Mode:              pulumi.String("string"),
			Name:              pulumi.String("string"),
			Type:              pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	VirtualHub: &network.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	VpnGatewayScaleUnit: pulumi.Int(0),
})
Copy
var vpnGatewayResource = new VpnGateway("vpnGatewayResource", VpnGatewayArgs.builder()
    .resourceGroupName("string")
    .bgpSettings(BgpSettingsArgs.builder()
        .asn(0)
        .bgpPeeringAddress("string")
        .bgpPeeringAddresses(IPConfigurationBgpPeeringAddressArgs.builder()
            .customBgpIpAddresses("string")
            .ipconfigurationId("string")
            .build())
        .peerWeight(0)
        .build())
    .connections(VpnConnectionArgs.builder()
        .connectionBandwidth(0)
        .dpdTimeoutSeconds(0)
        .enableBgp(false)
        .enableInternetSecurity(false)
        .enableRateLimiting(false)
        .id("string")
        .ipsecPolicies(IpsecPolicyArgs.builder()
            .dhGroup("string")
            .ikeEncryption("string")
            .ikeIntegrity("string")
            .ipsecEncryption("string")
            .ipsecIntegrity("string")
            .pfsGroup("string")
            .saDataSizeKilobytes(0)
            .saLifeTimeSeconds(0)
            .build())
        .name("string")
        .remoteVpnSite(SubResourceArgs.builder()
            .id("string")
            .build())
        .routingConfiguration(RoutingConfigurationArgs.builder()
            .associatedRouteTable(SubResourceArgs.builder()
                .id("string")
                .build())
            .inboundRouteMap(SubResourceArgs.builder()
                .id("string")
                .build())
            .outboundRouteMap(SubResourceArgs.builder()
                .id("string")
                .build())
            .propagatedRouteTables(PropagatedRouteTableArgs.builder()
                .ids(SubResourceArgs.builder()
                    .id("string")
                    .build())
                .labels("string")
                .build())
            .vnetRoutes(VnetRouteArgs.builder()
                .staticRoutes(StaticRouteArgs.builder()
                    .addressPrefixes("string")
                    .name("string")
                    .nextHopIpAddress("string")
                    .build())
                .staticRoutesConfig(StaticRoutesConfigArgs.builder()
                    .vnetLocalRouteOverrideCriteria("string")
                    .build())
                .build())
            .build())
        .routingWeight(0)
        .sharedKey("string")
        .trafficSelectorPolicies(TrafficSelectorPolicyArgs.builder()
            .localAddressRanges("string")
            .remoteAddressRanges("string")
            .build())
        .useLocalAzureIpAddress(false)
        .usePolicyBasedTrafficSelectors(false)
        .vpnConnectionProtocolType("string")
        .vpnLinkConnections(VpnSiteLinkConnectionArgs.builder()
            .connectionBandwidth(0)
            .dpdTimeoutSeconds(0)
            .egressNatRules(SubResourceArgs.builder()
                .id("string")
                .build())
            .enableBgp(false)
            .enableRateLimiting(false)
            .id("string")
            .ingressNatRules(SubResourceArgs.builder()
                .id("string")
                .build())
            .ipsecPolicies(IpsecPolicyArgs.builder()
                .dhGroup("string")
                .ikeEncryption("string")
                .ikeIntegrity("string")
                .ipsecEncryption("string")
                .ipsecIntegrity("string")
                .pfsGroup("string")
                .saDataSizeKilobytes(0)
                .saLifeTimeSeconds(0)
                .build())
            .name("string")
            .routingWeight(0)
            .sharedKey("string")
            .useLocalAzureIpAddress(false)
            .usePolicyBasedTrafficSelectors(false)
            .vpnConnectionProtocolType("string")
            .vpnGatewayCustomBgpAddresses(GatewayCustomBgpIpAddressIpConfigurationArgs.builder()
                .customBgpIpAddress("string")
                .ipConfigurationId("string")
                .build())
            .vpnLinkConnectionMode("string")
            .vpnSiteLink(SubResourceArgs.builder()
                .id("string")
                .build())
            .build())
        .build())
    .enableBgpRouteTranslationForNat(false)
    .gatewayName("string")
    .id("string")
    .isRoutingPreferenceInternet(false)
    .location("string")
    .natRules(VpnGatewayNatRuleArgs.builder()
        .externalMappings(VpnNatRuleMappingArgs.builder()
            .addressSpace("string")
            .portRange("string")
            .build())
        .id("string")
        .internalMappings(VpnNatRuleMappingArgs.builder()
            .addressSpace("string")
            .portRange("string")
            .build())
        .ipConfigurationId("string")
        .mode("string")
        .name("string")
        .type("string")
        .build())
    .tags(Map.of("string", "string"))
    .virtualHub(SubResourceArgs.builder()
        .id("string")
        .build())
    .vpnGatewayScaleUnit(0)
    .build());
Copy
vpn_gateway_resource = azure_native.network.VpnGateway("vpnGatewayResource",
    resource_group_name="string",
    bgp_settings={
        "asn": 0,
        "bgp_peering_address": "string",
        "bgp_peering_addresses": [{
            "custom_bgp_ip_addresses": ["string"],
            "ipconfiguration_id": "string",
        }],
        "peer_weight": 0,
    },
    connections=[{
        "connection_bandwidth": 0,
        "dpd_timeout_seconds": 0,
        "enable_bgp": False,
        "enable_internet_security": False,
        "enable_rate_limiting": False,
        "id": "string",
        "ipsec_policies": [{
            "dh_group": "string",
            "ike_encryption": "string",
            "ike_integrity": "string",
            "ipsec_encryption": "string",
            "ipsec_integrity": "string",
            "pfs_group": "string",
            "sa_data_size_kilobytes": 0,
            "sa_life_time_seconds": 0,
        }],
        "name": "string",
        "remote_vpn_site": {
            "id": "string",
        },
        "routing_configuration": {
            "associated_route_table": {
                "id": "string",
            },
            "inbound_route_map": {
                "id": "string",
            },
            "outbound_route_map": {
                "id": "string",
            },
            "propagated_route_tables": {
                "ids": [{
                    "id": "string",
                }],
                "labels": ["string"],
            },
            "vnet_routes": {
                "static_routes": [{
                    "address_prefixes": ["string"],
                    "name": "string",
                    "next_hop_ip_address": "string",
                }],
                "static_routes_config": {
                    "vnet_local_route_override_criteria": "string",
                },
            },
        },
        "routing_weight": 0,
        "shared_key": "string",
        "traffic_selector_policies": [{
            "local_address_ranges": ["string"],
            "remote_address_ranges": ["string"],
        }],
        "use_local_azure_ip_address": False,
        "use_policy_based_traffic_selectors": False,
        "vpn_connection_protocol_type": "string",
        "vpn_link_connections": [{
            "connection_bandwidth": 0,
            "dpd_timeout_seconds": 0,
            "egress_nat_rules": [{
                "id": "string",
            }],
            "enable_bgp": False,
            "enable_rate_limiting": False,
            "id": "string",
            "ingress_nat_rules": [{
                "id": "string",
            }],
            "ipsec_policies": [{
                "dh_group": "string",
                "ike_encryption": "string",
                "ike_integrity": "string",
                "ipsec_encryption": "string",
                "ipsec_integrity": "string",
                "pfs_group": "string",
                "sa_data_size_kilobytes": 0,
                "sa_life_time_seconds": 0,
            }],
            "name": "string",
            "routing_weight": 0,
            "shared_key": "string",
            "use_local_azure_ip_address": False,
            "use_policy_based_traffic_selectors": False,
            "vpn_connection_protocol_type": "string",
            "vpn_gateway_custom_bgp_addresses": [{
                "custom_bgp_ip_address": "string",
                "ip_configuration_id": "string",
            }],
            "vpn_link_connection_mode": "string",
            "vpn_site_link": {
                "id": "string",
            },
        }],
    }],
    enable_bgp_route_translation_for_nat=False,
    gateway_name="string",
    id="string",
    is_routing_preference_internet=False,
    location="string",
    nat_rules=[{
        "external_mappings": [{
            "address_space": "string",
            "port_range": "string",
        }],
        "id": "string",
        "internal_mappings": [{
            "address_space": "string",
            "port_range": "string",
        }],
        "ip_configuration_id": "string",
        "mode": "string",
        "name": "string",
        "type": "string",
    }],
    tags={
        "string": "string",
    },
    virtual_hub={
        "id": "string",
    },
    vpn_gateway_scale_unit=0)
Copy
const vpnGatewayResource = new azure_native.network.VpnGateway("vpnGatewayResource", {
    resourceGroupName: "string",
    bgpSettings: {
        asn: 0,
        bgpPeeringAddress: "string",
        bgpPeeringAddresses: [{
            customBgpIpAddresses: ["string"],
            ipconfigurationId: "string",
        }],
        peerWeight: 0,
    },
    connections: [{
        connectionBandwidth: 0,
        dpdTimeoutSeconds: 0,
        enableBgp: false,
        enableInternetSecurity: false,
        enableRateLimiting: false,
        id: "string",
        ipsecPolicies: [{
            dhGroup: "string",
            ikeEncryption: "string",
            ikeIntegrity: "string",
            ipsecEncryption: "string",
            ipsecIntegrity: "string",
            pfsGroup: "string",
            saDataSizeKilobytes: 0,
            saLifeTimeSeconds: 0,
        }],
        name: "string",
        remoteVpnSite: {
            id: "string",
        },
        routingConfiguration: {
            associatedRouteTable: {
                id: "string",
            },
            inboundRouteMap: {
                id: "string",
            },
            outboundRouteMap: {
                id: "string",
            },
            propagatedRouteTables: {
                ids: [{
                    id: "string",
                }],
                labels: ["string"],
            },
            vnetRoutes: {
                staticRoutes: [{
                    addressPrefixes: ["string"],
                    name: "string",
                    nextHopIpAddress: "string",
                }],
                staticRoutesConfig: {
                    vnetLocalRouteOverrideCriteria: "string",
                },
            },
        },
        routingWeight: 0,
        sharedKey: "string",
        trafficSelectorPolicies: [{
            localAddressRanges: ["string"],
            remoteAddressRanges: ["string"],
        }],
        useLocalAzureIpAddress: false,
        usePolicyBasedTrafficSelectors: false,
        vpnConnectionProtocolType: "string",
        vpnLinkConnections: [{
            connectionBandwidth: 0,
            dpdTimeoutSeconds: 0,
            egressNatRules: [{
                id: "string",
            }],
            enableBgp: false,
            enableRateLimiting: false,
            id: "string",
            ingressNatRules: [{
                id: "string",
            }],
            ipsecPolicies: [{
                dhGroup: "string",
                ikeEncryption: "string",
                ikeIntegrity: "string",
                ipsecEncryption: "string",
                ipsecIntegrity: "string",
                pfsGroup: "string",
                saDataSizeKilobytes: 0,
                saLifeTimeSeconds: 0,
            }],
            name: "string",
            routingWeight: 0,
            sharedKey: "string",
            useLocalAzureIpAddress: false,
            usePolicyBasedTrafficSelectors: false,
            vpnConnectionProtocolType: "string",
            vpnGatewayCustomBgpAddresses: [{
                customBgpIpAddress: "string",
                ipConfigurationId: "string",
            }],
            vpnLinkConnectionMode: "string",
            vpnSiteLink: {
                id: "string",
            },
        }],
    }],
    enableBgpRouteTranslationForNat: false,
    gatewayName: "string",
    id: "string",
    isRoutingPreferenceInternet: false,
    location: "string",
    natRules: [{
        externalMappings: [{
            addressSpace: "string",
            portRange: "string",
        }],
        id: "string",
        internalMappings: [{
            addressSpace: "string",
            portRange: "string",
        }],
        ipConfigurationId: "string",
        mode: "string",
        name: "string",
        type: "string",
    }],
    tags: {
        string: "string",
    },
    virtualHub: {
        id: "string",
    },
    vpnGatewayScaleUnit: 0,
});
Copy
type: azure-native:network:VpnGateway
properties:
    bgpSettings:
        asn: 0
        bgpPeeringAddress: string
        bgpPeeringAddresses:
            - customBgpIpAddresses:
                - string
              ipconfigurationId: string
        peerWeight: 0
    connections:
        - connectionBandwidth: 0
          dpdTimeoutSeconds: 0
          enableBgp: false
          enableInternetSecurity: false
          enableRateLimiting: false
          id: string
          ipsecPolicies:
            - dhGroup: string
              ikeEncryption: string
              ikeIntegrity: string
              ipsecEncryption: string
              ipsecIntegrity: string
              pfsGroup: string
              saDataSizeKilobytes: 0
              saLifeTimeSeconds: 0
          name: string
          remoteVpnSite:
            id: string
          routingConfiguration:
            associatedRouteTable:
                id: string
            inboundRouteMap:
                id: string
            outboundRouteMap:
                id: string
            propagatedRouteTables:
                ids:
                    - id: string
                labels:
                    - string
            vnetRoutes:
                staticRoutes:
                    - addressPrefixes:
                        - string
                      name: string
                      nextHopIpAddress: string
                staticRoutesConfig:
                    vnetLocalRouteOverrideCriteria: string
          routingWeight: 0
          sharedKey: string
          trafficSelectorPolicies:
            - localAddressRanges:
                - string
              remoteAddressRanges:
                - string
          useLocalAzureIpAddress: false
          usePolicyBasedTrafficSelectors: false
          vpnConnectionProtocolType: string
          vpnLinkConnections:
            - connectionBandwidth: 0
              dpdTimeoutSeconds: 0
              egressNatRules:
                - id: string
              enableBgp: false
              enableRateLimiting: false
              id: string
              ingressNatRules:
                - id: string
              ipsecPolicies:
                - dhGroup: string
                  ikeEncryption: string
                  ikeIntegrity: string
                  ipsecEncryption: string
                  ipsecIntegrity: string
                  pfsGroup: string
                  saDataSizeKilobytes: 0
                  saLifeTimeSeconds: 0
              name: string
              routingWeight: 0
              sharedKey: string
              useLocalAzureIpAddress: false
              usePolicyBasedTrafficSelectors: false
              vpnConnectionProtocolType: string
              vpnGatewayCustomBgpAddresses:
                - customBgpIpAddress: string
                  ipConfigurationId: string
              vpnLinkConnectionMode: string
              vpnSiteLink:
                id: string
    enableBgpRouteTranslationForNat: false
    gatewayName: string
    id: string
    isRoutingPreferenceInternet: false
    location: string
    natRules:
        - externalMappings:
            - addressSpace: string
              portRange: string
          id: string
          internalMappings:
            - addressSpace: string
              portRange: string
          ipConfigurationId: string
          mode: string
          name: string
          type: string
    resourceGroupName: string
    tags:
        string: string
    virtualHub:
        id: string
    vpnGatewayScaleUnit: 0
Copy

VpnGateway Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VpnGateway resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name of the VpnGateway.
BgpSettings Pulumi.AzureNative.Network.Inputs.BgpSettings
Local network gateway's BGP speaker settings.
Connections List<Pulumi.AzureNative.Network.Inputs.VpnConnection>
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
EnableBgpRouteTranslationForNat bool
Enable BGP routes translation for NAT on this VpnGateway.
GatewayName Changes to this property will trigger replacement. string
The name of the gateway.
Id string
Resource ID.
IsRoutingPreferenceInternet bool
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
Location string
Resource location.
NatRules List<Pulumi.AzureNative.Network.Inputs.VpnGatewayNatRule>
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
Tags Dictionary<string, string>
Resource tags.
VirtualHub Pulumi.AzureNative.Network.Inputs.SubResource
The VirtualHub to which the gateway belongs.
VpnGatewayScaleUnit int
The scale unit for this vpn gateway.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name of the VpnGateway.
BgpSettings BgpSettingsArgs
Local network gateway's BGP speaker settings.
Connections []VpnConnectionTypeArgs
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
EnableBgpRouteTranslationForNat bool
Enable BGP routes translation for NAT on this VpnGateway.
GatewayName Changes to this property will trigger replacement. string
The name of the gateway.
Id string
Resource ID.
IsRoutingPreferenceInternet bool
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
Location string
Resource location.
NatRules []VpnGatewayNatRuleArgs
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
Tags map[string]string
Resource tags.
VirtualHub SubResourceArgs
The VirtualHub to which the gateway belongs.
VpnGatewayScaleUnit int
The scale unit for this vpn gateway.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name of the VpnGateway.
bgpSettings BgpSettings
Local network gateway's BGP speaker settings.
connections List<VpnConnection>
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
enableBgpRouteTranslationForNat Boolean
Enable BGP routes translation for NAT on this VpnGateway.
gatewayName Changes to this property will trigger replacement. String
The name of the gateway.
id String
Resource ID.
isRoutingPreferenceInternet Boolean
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
location String
Resource location.
natRules List<VpnGatewayNatRule>
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Map<String,String>
Resource tags.
virtualHub SubResource
The VirtualHub to which the gateway belongs.
vpnGatewayScaleUnit Integer
The scale unit for this vpn gateway.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name of the VpnGateway.
bgpSettings BgpSettings
Local network gateway's BGP speaker settings.
connections VpnConnection[]
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
enableBgpRouteTranslationForNat boolean
Enable BGP routes translation for NAT on this VpnGateway.
gatewayName Changes to this property will trigger replacement. string
The name of the gateway.
id string
Resource ID.
isRoutingPreferenceInternet boolean
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
location string
Resource location.
natRules VpnGatewayNatRule[]
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags {[key: string]: string}
Resource tags.
virtualHub SubResource
The VirtualHub to which the gateway belongs.
vpnGatewayScaleUnit number
The scale unit for this vpn gateway.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name of the VpnGateway.
bgp_settings BgpSettingsArgs
Local network gateway's BGP speaker settings.
connections Sequence[VpnConnectionArgs]
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
enable_bgp_route_translation_for_nat bool
Enable BGP routes translation for NAT on this VpnGateway.
gateway_name Changes to this property will trigger replacement. str
The name of the gateway.
id str
Resource ID.
is_routing_preference_internet bool
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
location str
Resource location.
nat_rules Sequence[VpnGatewayNatRuleArgs]
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Mapping[str, str]
Resource tags.
virtual_hub SubResourceArgs
The VirtualHub to which the gateway belongs.
vpn_gateway_scale_unit int
The scale unit for this vpn gateway.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name of the VpnGateway.
bgpSettings Property Map
Local network gateway's BGP speaker settings.
connections List<Property Map>
List of all vpn connections to the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
enableBgpRouteTranslationForNat Boolean
Enable BGP routes translation for NAT on this VpnGateway.
gatewayName Changes to this property will trigger replacement. String
The name of the gateway.
id String
Resource ID.
isRoutingPreferenceInternet Boolean
Enable Routing Preference property for the Public IP Interface of the VpnGateway.
location String
Resource location.
natRules List<Property Map>
List of all the nat Rules associated with the gateway. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Map<String>
Resource tags.
virtualHub Property Map
The VirtualHub to which the gateway belongs.
vpnGatewayScaleUnit Number
The scale unit for this vpn gateway.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
IpConfigurations List<Pulumi.AzureNative.Network.Outputs.VpnGatewayIpConfigurationResponse>
List of all IPs configured on the gateway.
Name string
Resource name.
ProvisioningState string
The provisioning state of the VPN gateway resource.
Type string
Resource type.
AzureApiVersion string
The Azure API version of the resource.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
IpConfigurations []VpnGatewayIpConfigurationResponse
List of all IPs configured on the gateway.
Name string
Resource name.
ProvisioningState string
The provisioning state of the VPN gateway resource.
Type string
Resource type.
azureApiVersion String
The Azure API version of the resource.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
ipConfigurations List<VpnGatewayIpConfigurationResponse>
List of all IPs configured on the gateway.
name String
Resource name.
provisioningState String
The provisioning state of the VPN gateway resource.
type String
Resource type.
azureApiVersion string
The Azure API version of the resource.
etag string
A unique read-only string that changes whenever the resource is updated.
id string
The provider-assigned unique ID for this managed resource.
ipConfigurations VpnGatewayIpConfigurationResponse[]
List of all IPs configured on the gateway.
name string
Resource name.
provisioningState string
The provisioning state of the VPN gateway resource.
type string
Resource type.
azure_api_version str
The Azure API version of the resource.
etag str
A unique read-only string that changes whenever the resource is updated.
id str
The provider-assigned unique ID for this managed resource.
ip_configurations Sequence[VpnGatewayIpConfigurationResponse]
List of all IPs configured on the gateway.
name str
Resource name.
provisioning_state str
The provisioning state of the VPN gateway resource.
type str
Resource type.
azureApiVersion String
The Azure API version of the resource.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
ipConfigurations List<Property Map>
List of all IPs configured on the gateway.
name String
Resource name.
provisioningState String
The provisioning state of the VPN gateway resource.
type String
Resource type.

Supporting Types

BgpSettings
, BgpSettingsArgs

Asn double
The BGP speaker's ASN.
BgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
BgpPeeringAddresses List<Pulumi.AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddress>
BGP peering address with IP configuration ID for virtual network gateway.
PeerWeight int
The weight added to routes learned from this BGP speaker.
Asn float64
The BGP speaker's ASN.
BgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
BgpPeeringAddresses []IPConfigurationBgpPeeringAddress
BGP peering address with IP configuration ID for virtual network gateway.
PeerWeight int
The weight added to routes learned from this BGP speaker.
asn Double
The BGP speaker's ASN.
bgpPeeringAddress String
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses List<IPConfigurationBgpPeeringAddress>
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight Integer
The weight added to routes learned from this BGP speaker.
asn number
The BGP speaker's ASN.
bgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses IPConfigurationBgpPeeringAddress[]
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight number
The weight added to routes learned from this BGP speaker.
asn float
The BGP speaker's ASN.
bgp_peering_address str
The BGP peering address and BGP identifier of this BGP speaker.
bgp_peering_addresses Sequence[IPConfigurationBgpPeeringAddress]
BGP peering address with IP configuration ID for virtual network gateway.
peer_weight int
The weight added to routes learned from this BGP speaker.
asn Number
The BGP speaker's ASN.
bgpPeeringAddress String
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses List<Property Map>
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight Number
The weight added to routes learned from this BGP speaker.

BgpSettingsResponse
, BgpSettingsResponseArgs

Asn double
The BGP speaker's ASN.
BgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
BgpPeeringAddresses List<Pulumi.AzureNative.Network.Inputs.IPConfigurationBgpPeeringAddressResponse>
BGP peering address with IP configuration ID for virtual network gateway.
PeerWeight int
The weight added to routes learned from this BGP speaker.
Asn float64
The BGP speaker's ASN.
BgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
BgpPeeringAddresses []IPConfigurationBgpPeeringAddressResponse
BGP peering address with IP configuration ID for virtual network gateway.
PeerWeight int
The weight added to routes learned from this BGP speaker.
asn Double
The BGP speaker's ASN.
bgpPeeringAddress String
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses List<IPConfigurationBgpPeeringAddressResponse>
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight Integer
The weight added to routes learned from this BGP speaker.
asn number
The BGP speaker's ASN.
bgpPeeringAddress string
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses IPConfigurationBgpPeeringAddressResponse[]
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight number
The weight added to routes learned from this BGP speaker.
asn float
The BGP speaker's ASN.
bgp_peering_address str
The BGP peering address and BGP identifier of this BGP speaker.
bgp_peering_addresses Sequence[IPConfigurationBgpPeeringAddressResponse]
BGP peering address with IP configuration ID for virtual network gateway.
peer_weight int
The weight added to routes learned from this BGP speaker.
asn Number
The BGP speaker's ASN.
bgpPeeringAddress String
The BGP peering address and BGP identifier of this BGP speaker.
bgpPeeringAddresses List<Property Map>
BGP peering address with IP configuration ID for virtual network gateway.
peerWeight Number
The weight added to routes learned from this BGP speaker.

DhGroup
, DhGroupArgs

None
None
DHGroup1
DHGroup1
DHGroup2
DHGroup2
DHGroup14
DHGroup14
DHGroup2048
DHGroup2048
ECP256
ECP256
ECP384
ECP384
DHGroup24
DHGroup24
DhGroupNone
None
DhGroupDHGroup1
DHGroup1
DhGroupDHGroup2
DHGroup2
DhGroupDHGroup14
DHGroup14
DhGroupDHGroup2048
DHGroup2048
DhGroupECP256
ECP256
DhGroupECP384
ECP384
DhGroupDHGroup24
DHGroup24
None
None
DHGroup1
DHGroup1
DHGroup2
DHGroup2
DHGroup14
DHGroup14
DHGroup2048
DHGroup2048
ECP256
ECP256
ECP384
ECP384
DHGroup24
DHGroup24
None
None
DHGroup1
DHGroup1
DHGroup2
DHGroup2
DHGroup14
DHGroup14
DHGroup2048
DHGroup2048
ECP256
ECP256
ECP384
ECP384
DHGroup24
DHGroup24
NONE
None
DH_GROUP1
DHGroup1
DH_GROUP2
DHGroup2
DH_GROUP14
DHGroup14
DH_GROUP2048
DHGroup2048
ECP256
ECP256
ECP384
ECP384
DH_GROUP24
DHGroup24
"None"
None
"DHGroup1"
DHGroup1
"DHGroup2"
DHGroup2
"DHGroup14"
DHGroup14
"DHGroup2048"
DHGroup2048
"ECP256"
ECP256
"ECP384"
ECP384
"DHGroup24"
DHGroup24

GatewayCustomBgpIpAddressIpConfiguration
, GatewayCustomBgpIpAddressIpConfigurationArgs

CustomBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
IpConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
CustomBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
IpConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. String
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. String
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
custom_bgp_ip_address This property is required. str
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ip_configuration_id This property is required. str
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. String
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. String
The IpconfigurationId of ipconfiguration which belongs to gateway.

GatewayCustomBgpIpAddressIpConfigurationResponse
, GatewayCustomBgpIpAddressIpConfigurationResponseArgs

CustomBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
IpConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
CustomBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
IpConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. String
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. String
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. string
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. string
The IpconfigurationId of ipconfiguration which belongs to gateway.
custom_bgp_ip_address This property is required. str
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ip_configuration_id This property is required. str
The IpconfigurationId of ipconfiguration which belongs to gateway.
customBgpIpAddress This property is required. String
The custom BgpPeeringAddress which belongs to IpconfigurationId.
ipConfigurationId This property is required. String
The IpconfigurationId of ipconfiguration which belongs to gateway.

IPConfigurationBgpPeeringAddress
, IPConfigurationBgpPeeringAddressArgs

CustomBgpIpAddresses List<string>
The list of custom BGP peering addresses which belong to IP configuration.
IpconfigurationId string
The ID of IP configuration which belongs to gateway.
CustomBgpIpAddresses []string
The list of custom BGP peering addresses which belong to IP configuration.
IpconfigurationId string
The ID of IP configuration which belongs to gateway.
customBgpIpAddresses List<String>
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId String
The ID of IP configuration which belongs to gateway.
customBgpIpAddresses string[]
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId string
The ID of IP configuration which belongs to gateway.
custom_bgp_ip_addresses Sequence[str]
The list of custom BGP peering addresses which belong to IP configuration.
ipconfiguration_id str
The ID of IP configuration which belongs to gateway.
customBgpIpAddresses List<String>
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId String
The ID of IP configuration which belongs to gateway.

IPConfigurationBgpPeeringAddressResponse
, IPConfigurationBgpPeeringAddressResponseArgs

DefaultBgpIpAddresses This property is required. List<string>
The list of default BGP peering addresses which belong to IP configuration.
TunnelIpAddresses This property is required. List<string>
The list of tunnel public IP addresses which belong to IP configuration.
CustomBgpIpAddresses List<string>
The list of custom BGP peering addresses which belong to IP configuration.
IpconfigurationId string
The ID of IP configuration which belongs to gateway.
DefaultBgpIpAddresses This property is required. []string
The list of default BGP peering addresses which belong to IP configuration.
TunnelIpAddresses This property is required. []string
The list of tunnel public IP addresses which belong to IP configuration.
CustomBgpIpAddresses []string
The list of custom BGP peering addresses which belong to IP configuration.
IpconfigurationId string
The ID of IP configuration which belongs to gateway.
defaultBgpIpAddresses This property is required. List<String>
The list of default BGP peering addresses which belong to IP configuration.
tunnelIpAddresses This property is required. List<String>
The list of tunnel public IP addresses which belong to IP configuration.
customBgpIpAddresses List<String>
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId String
The ID of IP configuration which belongs to gateway.
defaultBgpIpAddresses This property is required. string[]
The list of default BGP peering addresses which belong to IP configuration.
tunnelIpAddresses This property is required. string[]
The list of tunnel public IP addresses which belong to IP configuration.
customBgpIpAddresses string[]
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId string
The ID of IP configuration which belongs to gateway.
default_bgp_ip_addresses This property is required. Sequence[str]
The list of default BGP peering addresses which belong to IP configuration.
tunnel_ip_addresses This property is required. Sequence[str]
The list of tunnel public IP addresses which belong to IP configuration.
custom_bgp_ip_addresses Sequence[str]
The list of custom BGP peering addresses which belong to IP configuration.
ipconfiguration_id str
The ID of IP configuration which belongs to gateway.
defaultBgpIpAddresses This property is required. List<String>
The list of default BGP peering addresses which belong to IP configuration.
tunnelIpAddresses This property is required. List<String>
The list of tunnel public IP addresses which belong to IP configuration.
customBgpIpAddresses List<String>
The list of custom BGP peering addresses which belong to IP configuration.
ipconfigurationId String
The ID of IP configuration which belongs to gateway.

IkeEncryption
, IkeEncryptionArgs

DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES256
GCMAES256
GCMAES128
GCMAES128
IkeEncryptionDES
DES
IkeEncryptionDES3
DES3
IkeEncryptionAES128
AES128
IkeEncryptionAES192
AES192
IkeEncryptionAES256
AES256
IkeEncryptionGCMAES256
GCMAES256
IkeEncryptionGCMAES128
GCMAES128
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES256
GCMAES256
GCMAES128
GCMAES128
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES256
GCMAES256
GCMAES128
GCMAES128
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES256
GCMAES256
GCMAES128
GCMAES128
"DES"
DES
"DES3"
DES3
"AES128"
AES128
"AES192"
AES192
"AES256"
AES256
"GCMAES256"
GCMAES256
"GCMAES128"
GCMAES128

IkeIntegrity
, IkeIntegrityArgs

MD5
MD5
SHA1
SHA1
SHA256
SHA256
SHA384
SHA384
GCMAES256
GCMAES256
GCMAES128
GCMAES128
IkeIntegrityMD5
MD5
IkeIntegritySHA1
SHA1
IkeIntegritySHA256
SHA256
IkeIntegritySHA384
SHA384
IkeIntegrityGCMAES256
GCMAES256
IkeIntegrityGCMAES128
GCMAES128
MD5
MD5
SHA1
SHA1
SHA256
SHA256
SHA384
SHA384
GCMAES256
GCMAES256
GCMAES128
GCMAES128
MD5
MD5
SHA1
SHA1
SHA256
SHA256
SHA384
SHA384
GCMAES256
GCMAES256
GCMAES128
GCMAES128
MD5
MD5
SHA1
SHA1
SHA256
SHA256
SHA384
SHA384
GCMAES256
GCMAES256
GCMAES128
GCMAES128
"MD5"
MD5
"SHA1"
SHA1
"SHA256"
SHA256
"SHA384"
SHA384
"GCMAES256"
GCMAES256
"GCMAES128"
GCMAES128

IpsecEncryption
, IpsecEncryptionArgs

None
None
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
IpsecEncryptionNone
None
IpsecEncryptionDES
DES
IpsecEncryptionDES3
DES3
IpsecEncryptionAES128
AES128
IpsecEncryptionAES192
AES192
IpsecEncryptionAES256
AES256
IpsecEncryptionGCMAES128
GCMAES128
IpsecEncryptionGCMAES192
GCMAES192
IpsecEncryptionGCMAES256
GCMAES256
None
None
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
None
None
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
NONE
None
DES
DES
DES3
DES3
AES128
AES128
AES192
AES192
AES256
AES256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
"None"
None
"DES"
DES
"DES3"
DES3
"AES128"
AES128
"AES192"
AES192
"AES256"
AES256
"GCMAES128"
GCMAES128
"GCMAES192"
GCMAES192
"GCMAES256"
GCMAES256

IpsecIntegrity
, IpsecIntegrityArgs

MD5
MD5
SHA1
SHA1
SHA256
SHA256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
IpsecIntegrityMD5
MD5
IpsecIntegritySHA1
SHA1
IpsecIntegritySHA256
SHA256
IpsecIntegrityGCMAES128
GCMAES128
IpsecIntegrityGCMAES192
GCMAES192
IpsecIntegrityGCMAES256
GCMAES256
MD5
MD5
SHA1
SHA1
SHA256
SHA256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
MD5
MD5
SHA1
SHA1
SHA256
SHA256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
MD5
MD5
SHA1
SHA1
SHA256
SHA256
GCMAES128
GCMAES128
GCMAES192
GCMAES192
GCMAES256
GCMAES256
"MD5"
MD5
"SHA1"
SHA1
"SHA256"
SHA256
"GCMAES128"
GCMAES128
"GCMAES192"
GCMAES192
"GCMAES256"
GCMAES256

IpsecPolicy
, IpsecPolicyArgs

DhGroup This property is required. string | Pulumi.AzureNative.Network.DhGroup
The DH Group used in IKE Phase 1 for initial SA.
IkeEncryption This property is required. string | Pulumi.AzureNative.Network.IkeEncryption
The IKE encryption algorithm (IKE phase 2).
IkeIntegrity This property is required. string | Pulumi.AzureNative.Network.IkeIntegrity
The IKE integrity algorithm (IKE phase 2).
IpsecEncryption This property is required. string | Pulumi.AzureNative.Network.IpsecEncryption
The IPSec encryption algorithm (IKE phase 1).
IpsecIntegrity This property is required. string | Pulumi.AzureNative.Network.IpsecIntegrity
The IPSec integrity algorithm (IKE phase 1).
PfsGroup This property is required. string | Pulumi.AzureNative.Network.PfsGroup
The Pfs Group used in IKE Phase 2 for new child SA.
SaDataSizeKilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
SaLifeTimeSeconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
DhGroup This property is required. string | DhGroup
The DH Group used in IKE Phase 1 for initial SA.
IkeEncryption This property is required. string | IkeEncryption
The IKE encryption algorithm (IKE phase 2).
IkeIntegrity This property is required. string | IkeIntegrity
The IKE integrity algorithm (IKE phase 2).
IpsecEncryption This property is required. string | IpsecEncryption
The IPSec encryption algorithm (IKE phase 1).
IpsecIntegrity This property is required. string | IpsecIntegrity
The IPSec integrity algorithm (IKE phase 1).
PfsGroup This property is required. string | PfsGroup
The Pfs Group used in IKE Phase 2 for new child SA.
SaDataSizeKilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
SaLifeTimeSeconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. String | DhGroup
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. String | IkeEncryption
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. String | IkeIntegrity
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. String | IpsecEncryption
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. String | IpsecIntegrity
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. String | PfsGroup
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. Integer
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. Integer
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. string | DhGroup
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. string | IkeEncryption
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. string | IkeIntegrity
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. string | IpsecEncryption
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. string | IpsecIntegrity
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. string | PfsGroup
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dh_group This property is required. str | DhGroup
The DH Group used in IKE Phase 1 for initial SA.
ike_encryption This property is required. str | IkeEncryption
The IKE encryption algorithm (IKE phase 2).
ike_integrity This property is required. str | IkeIntegrity
The IKE integrity algorithm (IKE phase 2).
ipsec_encryption This property is required. str | IpsecEncryption
The IPSec encryption algorithm (IKE phase 1).
ipsec_integrity This property is required. str | IpsecIntegrity
The IPSec integrity algorithm (IKE phase 1).
pfs_group This property is required. str | PfsGroup
The Pfs Group used in IKE Phase 2 for new child SA.
sa_data_size_kilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
sa_life_time_seconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. String | "None" | "DHGroup1" | "DHGroup2" | "DHGroup14" | "DHGroup2048" | "ECP256" | "ECP384" | "DHGroup24"
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. String | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES256" | "GCMAES128"
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. String | "MD5" | "SHA1" | "SHA256" | "SHA384" | "GCMAES256" | "GCMAES128"
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. String | "None" | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES128" | "GCMAES192" | "GCMAES256"
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. String | "MD5" | "SHA1" | "SHA256" | "GCMAES128" | "GCMAES192" | "GCMAES256"
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. String | "None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM"
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. Number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. Number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.

IpsecPolicyResponse
, IpsecPolicyResponseArgs

DhGroup This property is required. string
The DH Group used in IKE Phase 1 for initial SA.
IkeEncryption This property is required. string
The IKE encryption algorithm (IKE phase 2).
IkeIntegrity This property is required. string
The IKE integrity algorithm (IKE phase 2).
IpsecEncryption This property is required. string
The IPSec encryption algorithm (IKE phase 1).
IpsecIntegrity This property is required. string
The IPSec integrity algorithm (IKE phase 1).
PfsGroup This property is required. string
The Pfs Group used in IKE Phase 2 for new child SA.
SaDataSizeKilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
SaLifeTimeSeconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
DhGroup This property is required. string
The DH Group used in IKE Phase 1 for initial SA.
IkeEncryption This property is required. string
The IKE encryption algorithm (IKE phase 2).
IkeIntegrity This property is required. string
The IKE integrity algorithm (IKE phase 2).
IpsecEncryption This property is required. string
The IPSec encryption algorithm (IKE phase 1).
IpsecIntegrity This property is required. string
The IPSec integrity algorithm (IKE phase 1).
PfsGroup This property is required. string
The Pfs Group used in IKE Phase 2 for new child SA.
SaDataSizeKilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
SaLifeTimeSeconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. String
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. String
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. String
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. String
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. String
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. String
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. Integer
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. Integer
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. string
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. string
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. string
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. string
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. string
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. string
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dh_group This property is required. str
The DH Group used in IKE Phase 1 for initial SA.
ike_encryption This property is required. str
The IKE encryption algorithm (IKE phase 2).
ike_integrity This property is required. str
The IKE integrity algorithm (IKE phase 2).
ipsec_encryption This property is required. str
The IPSec encryption algorithm (IKE phase 1).
ipsec_integrity This property is required. str
The IPSec integrity algorithm (IKE phase 1).
pfs_group This property is required. str
The Pfs Group used in IKE Phase 2 for new child SA.
sa_data_size_kilobytes This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
sa_life_time_seconds This property is required. int
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
dhGroup This property is required. String
The DH Group used in IKE Phase 1 for initial SA.
ikeEncryption This property is required. String
The IKE encryption algorithm (IKE phase 2).
ikeIntegrity This property is required. String
The IKE integrity algorithm (IKE phase 2).
ipsecEncryption This property is required. String
The IPSec encryption algorithm (IKE phase 1).
ipsecIntegrity This property is required. String
The IPSec integrity algorithm (IKE phase 1).
pfsGroup This property is required. String
The Pfs Group used in IKE Phase 2 for new child SA.
saDataSizeKilobytes This property is required. Number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site to site VPN tunnel.
saLifeTimeSeconds This property is required. Number
The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.

PfsGroup
, PfsGroupArgs

None
None
PFS1
PFS1
PFS2
PFS2
PFS2048
PFS2048
ECP256
ECP256
ECP384
ECP384
PFS24
PFS24
PFS14
PFS14
PFSMM
PFSMM
PfsGroupNone
None
PfsGroupPFS1
PFS1
PfsGroupPFS2
PFS2
PfsGroupPFS2048
PFS2048
PfsGroupECP256
ECP256
PfsGroupECP384
ECP384
PfsGroupPFS24
PFS24
PfsGroupPFS14
PFS14
PfsGroupPFSMM
PFSMM
None
None
PFS1
PFS1
PFS2
PFS2
PFS2048
PFS2048
ECP256
ECP256
ECP384
ECP384
PFS24
PFS24
PFS14
PFS14
PFSMM
PFSMM
None
None
PFS1
PFS1
PFS2
PFS2
PFS2048
PFS2048
ECP256
ECP256
ECP384
ECP384
PFS24
PFS24
PFS14
PFS14
PFSMM
PFSMM
NONE
None
PFS1
PFS1
PFS2
PFS2
PFS2048
PFS2048
ECP256
ECP256
ECP384
ECP384
PFS24
PFS24
PFS14
PFS14
PFSMM
PFSMM
"None"
None
"PFS1"
PFS1
"PFS2"
PFS2
"PFS2048"
PFS2048
"ECP256"
ECP256
"ECP384"
ECP384
"PFS24"
PFS24
"PFS14"
PFS14
"PFSMM"
PFSMM

PropagatedRouteTable
, PropagatedRouteTableArgs

Ids List<Pulumi.AzureNative.Network.Inputs.SubResource>
The list of resource ids of all the RouteTables.
Labels List<string>
The list of labels.
Ids []SubResource
The list of resource ids of all the RouteTables.
Labels []string
The list of labels.
ids List<SubResource>
The list of resource ids of all the RouteTables.
labels List<String>
The list of labels.
ids SubResource[]
The list of resource ids of all the RouteTables.
labels string[]
The list of labels.
ids Sequence[SubResource]
The list of resource ids of all the RouteTables.
labels Sequence[str]
The list of labels.
ids List<Property Map>
The list of resource ids of all the RouteTables.
labels List<String>
The list of labels.

PropagatedRouteTableResponse
, PropagatedRouteTableResponseArgs

Ids List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
The list of resource ids of all the RouteTables.
Labels List<string>
The list of labels.
Ids []SubResourceResponse
The list of resource ids of all the RouteTables.
Labels []string
The list of labels.
ids List<SubResourceResponse>
The list of resource ids of all the RouteTables.
labels List<String>
The list of labels.
ids SubResourceResponse[]
The list of resource ids of all the RouteTables.
labels string[]
The list of labels.
ids Sequence[SubResourceResponse]
The list of resource ids of all the RouteTables.
labels Sequence[str]
The list of labels.
ids List<Property Map>
The list of resource ids of all the RouteTables.
labels List<String>
The list of labels.

RoutingConfiguration
, RoutingConfigurationArgs

AssociatedRouteTable Pulumi.AzureNative.Network.Inputs.SubResource
The resource id RouteTable associated with this RoutingConfiguration.
InboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResource
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
OutboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResource
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
PropagatedRouteTables Pulumi.AzureNative.Network.Inputs.PropagatedRouteTable
The list of RouteTables to advertise the routes to.
VnetRoutes Pulumi.AzureNative.Network.Inputs.VnetRoute
List of routes that control routing from VirtualHub into a virtual network connection.
AssociatedRouteTable SubResource
The resource id RouteTable associated with this RoutingConfiguration.
InboundRouteMap SubResource
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
OutboundRouteMap SubResource
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
PropagatedRouteTables PropagatedRouteTable
The list of RouteTables to advertise the routes to.
VnetRoutes VnetRoute
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable SubResource
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap SubResource
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap SubResource
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables PropagatedRouteTable
The list of RouteTables to advertise the routes to.
vnetRoutes VnetRoute
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable SubResource
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap SubResource
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap SubResource
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables PropagatedRouteTable
The list of RouteTables to advertise the routes to.
vnetRoutes VnetRoute
List of routes that control routing from VirtualHub into a virtual network connection.
associated_route_table SubResource
The resource id RouteTable associated with this RoutingConfiguration.
inbound_route_map SubResource
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outbound_route_map SubResource
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagated_route_tables PropagatedRouteTable
The list of RouteTables to advertise the routes to.
vnet_routes VnetRoute
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable Property Map
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap Property Map
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap Property Map
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables Property Map
The list of RouteTables to advertise the routes to.
vnetRoutes Property Map
List of routes that control routing from VirtualHub into a virtual network connection.

RoutingConfigurationResponse
, RoutingConfigurationResponseArgs

AssociatedRouteTable Pulumi.AzureNative.Network.Inputs.SubResourceResponse
The resource id RouteTable associated with this RoutingConfiguration.
InboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResourceResponse
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
OutboundRouteMap Pulumi.AzureNative.Network.Inputs.SubResourceResponse
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
PropagatedRouteTables Pulumi.AzureNative.Network.Inputs.PropagatedRouteTableResponse
The list of RouteTables to advertise the routes to.
VnetRoutes Pulumi.AzureNative.Network.Inputs.VnetRouteResponse
List of routes that control routing from VirtualHub into a virtual network connection.
AssociatedRouteTable SubResourceResponse
The resource id RouteTable associated with this RoutingConfiguration.
InboundRouteMap SubResourceResponse
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
OutboundRouteMap SubResourceResponse
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
PropagatedRouteTables PropagatedRouteTableResponse
The list of RouteTables to advertise the routes to.
VnetRoutes VnetRouteResponse
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable SubResourceResponse
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap SubResourceResponse
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap SubResourceResponse
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables PropagatedRouteTableResponse
The list of RouteTables to advertise the routes to.
vnetRoutes VnetRouteResponse
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable SubResourceResponse
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap SubResourceResponse
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap SubResourceResponse
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables PropagatedRouteTableResponse
The list of RouteTables to advertise the routes to.
vnetRoutes VnetRouteResponse
List of routes that control routing from VirtualHub into a virtual network connection.
associated_route_table SubResourceResponse
The resource id RouteTable associated with this RoutingConfiguration.
inbound_route_map SubResourceResponse
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outbound_route_map SubResourceResponse
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagated_route_tables PropagatedRouteTableResponse
The list of RouteTables to advertise the routes to.
vnet_routes VnetRouteResponse
List of routes that control routing from VirtualHub into a virtual network connection.
associatedRouteTable Property Map
The resource id RouteTable associated with this RoutingConfiguration.
inboundRouteMap Property Map
The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
outboundRouteMap Property Map
The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
propagatedRouteTables Property Map
The list of RouteTables to advertise the routes to.
vnetRoutes Property Map
List of routes that control routing from VirtualHub into a virtual network connection.

StaticRoute
, StaticRouteArgs

AddressPrefixes List<string>
List of all address prefixes.
Name string
The name of the StaticRoute that is unique within a VnetRoute.
NextHopIpAddress string
The ip address of the next hop.
AddressPrefixes []string
List of all address prefixes.
Name string
The name of the StaticRoute that is unique within a VnetRoute.
NextHopIpAddress string
The ip address of the next hop.
addressPrefixes List<String>
List of all address prefixes.
name String
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress String
The ip address of the next hop.
addressPrefixes string[]
List of all address prefixes.
name string
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress string
The ip address of the next hop.
address_prefixes Sequence[str]
List of all address prefixes.
name str
The name of the StaticRoute that is unique within a VnetRoute.
next_hop_ip_address str
The ip address of the next hop.
addressPrefixes List<String>
List of all address prefixes.
name String
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress String
The ip address of the next hop.

StaticRouteResponse
, StaticRouteResponseArgs

AddressPrefixes List<string>
List of all address prefixes.
Name string
The name of the StaticRoute that is unique within a VnetRoute.
NextHopIpAddress string
The ip address of the next hop.
AddressPrefixes []string
List of all address prefixes.
Name string
The name of the StaticRoute that is unique within a VnetRoute.
NextHopIpAddress string
The ip address of the next hop.
addressPrefixes List<String>
List of all address prefixes.
name String
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress String
The ip address of the next hop.
addressPrefixes string[]
List of all address prefixes.
name string
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress string
The ip address of the next hop.
address_prefixes Sequence[str]
List of all address prefixes.
name str
The name of the StaticRoute that is unique within a VnetRoute.
next_hop_ip_address str
The ip address of the next hop.
addressPrefixes List<String>
List of all address prefixes.
name String
The name of the StaticRoute that is unique within a VnetRoute.
nextHopIpAddress String
The ip address of the next hop.

StaticRoutesConfig
, StaticRoutesConfigArgs

VnetLocalRouteOverrideCriteria string | Pulumi.AzureNative.Network.VnetLocalRouteOverrideCriteria
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
VnetLocalRouteOverrideCriteria string | VnetLocalRouteOverrideCriteria
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
vnetLocalRouteOverrideCriteria String | VnetLocalRouteOverrideCriteria
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
vnetLocalRouteOverrideCriteria string | VnetLocalRouteOverrideCriteria
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
vnet_local_route_override_criteria str | VnetLocalRouteOverrideCriteria
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
vnetLocalRouteOverrideCriteria String | "Contains" | "Equal"
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.

StaticRoutesConfigResponse
, StaticRoutesConfigResponseArgs

PropagateStaticRoutes This property is required. bool
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
VnetLocalRouteOverrideCriteria string
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
PropagateStaticRoutes This property is required. bool
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
VnetLocalRouteOverrideCriteria string
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
propagateStaticRoutes This property is required. Boolean
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
vnetLocalRouteOverrideCriteria String
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
propagateStaticRoutes This property is required. boolean
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
vnetLocalRouteOverrideCriteria string
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
propagate_static_routes This property is required. bool
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
vnet_local_route_override_criteria str
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
propagateStaticRoutes This property is required. Boolean
Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
vnetLocalRouteOverrideCriteria String
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.

SubResource
, SubResourceArgs

Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id str
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.

SubResourceResponse
, SubResourceResponseArgs

Id string
Resource ID.
Id string
Resource ID.
id String
Resource ID.
id string
Resource ID.
id str
Resource ID.
id String
Resource ID.

TrafficSelectorPolicy
, TrafficSelectorPolicyArgs

LocalAddressRanges This property is required. List<string>
A collection of local address spaces in CIDR format.
RemoteAddressRanges This property is required. List<string>
A collection of remote address spaces in CIDR format.
LocalAddressRanges This property is required. []string
A collection of local address spaces in CIDR format.
RemoteAddressRanges This property is required. []string
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. List<String>
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. List<String>
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. string[]
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. string[]
A collection of remote address spaces in CIDR format.
local_address_ranges This property is required. Sequence[str]
A collection of local address spaces in CIDR format.
remote_address_ranges This property is required. Sequence[str]
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. List<String>
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. List<String>
A collection of remote address spaces in CIDR format.

TrafficSelectorPolicyResponse
, TrafficSelectorPolicyResponseArgs

LocalAddressRanges This property is required. List<string>
A collection of local address spaces in CIDR format.
RemoteAddressRanges This property is required. List<string>
A collection of remote address spaces in CIDR format.
LocalAddressRanges This property is required. []string
A collection of local address spaces in CIDR format.
RemoteAddressRanges This property is required. []string
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. List<String>
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. List<String>
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. string[]
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. string[]
A collection of remote address spaces in CIDR format.
local_address_ranges This property is required. Sequence[str]
A collection of local address spaces in CIDR format.
remote_address_ranges This property is required. Sequence[str]
A collection of remote address spaces in CIDR format.
localAddressRanges This property is required. List<String>
A collection of local address spaces in CIDR format.
remoteAddressRanges This property is required. List<String>
A collection of remote address spaces in CIDR format.

VirtualNetworkGatewayConnectionProtocol
, VirtualNetworkGatewayConnectionProtocolArgs

IKEv2
IKEv2
IKEv1
IKEv1
VirtualNetworkGatewayConnectionProtocolIKEv2
IKEv2
VirtualNetworkGatewayConnectionProtocolIKEv1
IKEv1
IKEv2
IKEv2
IKEv1
IKEv1
IKEv2
IKEv2
IKEv1
IKEv1
IK_EV2
IKEv2
IK_EV1
IKEv1
"IKEv2"
IKEv2
"IKEv1"
IKEv1

VnetLocalRouteOverrideCriteria
, VnetLocalRouteOverrideCriteriaArgs

Contains
Contains
Equal
Equal
VnetLocalRouteOverrideCriteriaContains
Contains
VnetLocalRouteOverrideCriteriaEqual
Equal
Contains
Contains
Equal
Equal
Contains
Contains
Equal
Equal
CONTAINS
Contains
EQUAL
Equal
"Contains"
Contains
"Equal"
Equal

VnetRoute
, VnetRouteArgs

StaticRoutes []StaticRoute
List of all Static Routes.
StaticRoutesConfig StaticRoutesConfig
Configuration for static routes on this HubVnetConnection.
staticRoutes List<StaticRoute>
List of all Static Routes.
staticRoutesConfig StaticRoutesConfig
Configuration for static routes on this HubVnetConnection.
staticRoutes StaticRoute[]
List of all Static Routes.
staticRoutesConfig StaticRoutesConfig
Configuration for static routes on this HubVnetConnection.
static_routes Sequence[StaticRoute]
List of all Static Routes.
static_routes_config StaticRoutesConfig
Configuration for static routes on this HubVnetConnection.
staticRoutes List<Property Map>
List of all Static Routes.
staticRoutesConfig Property Map
Configuration for static routes on this HubVnetConnection.

VnetRouteResponse
, VnetRouteResponseArgs

BgpConnections This property is required. List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
The list of references to HubBgpConnection objects.
StaticRoutes List<Pulumi.AzureNative.Network.Inputs.StaticRouteResponse>
List of all Static Routes.
StaticRoutesConfig Pulumi.AzureNative.Network.Inputs.StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
BgpConnections This property is required. []SubResourceResponse
The list of references to HubBgpConnection objects.
StaticRoutes []StaticRouteResponse
List of all Static Routes.
StaticRoutesConfig StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
bgpConnections This property is required. List<SubResourceResponse>
The list of references to HubBgpConnection objects.
staticRoutes List<StaticRouteResponse>
List of all Static Routes.
staticRoutesConfig StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
bgpConnections This property is required. SubResourceResponse[]
The list of references to HubBgpConnection objects.
staticRoutes StaticRouteResponse[]
List of all Static Routes.
staticRoutesConfig StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
bgp_connections This property is required. Sequence[SubResourceResponse]
The list of references to HubBgpConnection objects.
static_routes Sequence[StaticRouteResponse]
List of all Static Routes.
static_routes_config StaticRoutesConfigResponse
Configuration for static routes on this HubVnetConnection.
bgpConnections This property is required. List<Property Map>
The list of references to HubBgpConnection objects.
staticRoutes List<Property Map>
List of all Static Routes.
staticRoutesConfig Property Map
Configuration for static routes on this HubVnetConnection.

VpnConnection
, VpnConnectionArgs

ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
DPD timeout in seconds for vpn connection.
EnableBgp bool
EnableBgp flag.
EnableInternetSecurity bool
Enable internet security.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IpsecPolicies List<Pulumi.AzureNative.Network.Inputs.IpsecPolicy>
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RemoteVpnSite Pulumi.AzureNative.Network.Inputs.SubResource
Id of the connected vpn site.
RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
TrafficSelectorPolicies List<Pulumi.AzureNative.Network.Inputs.TrafficSelectorPolicy>
The Traffic Selector Policies to be considered by this connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string | Pulumi.AzureNative.Network.VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
VpnLinkConnections List<Pulumi.AzureNative.Network.Inputs.VpnSiteLinkConnection>
List of all vpn site link connections to the gateway.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
DPD timeout in seconds for vpn connection.
EnableBgp bool
EnableBgp flag.
EnableInternetSecurity bool
Enable internet security.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IpsecPolicies []IpsecPolicy
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RemoteVpnSite SubResource
Id of the connected vpn site.
RoutingConfiguration RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
TrafficSelectorPolicies []TrafficSelectorPolicy
The Traffic Selector Policies to be considered by this connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
VpnLinkConnections []VpnSiteLinkConnection
List of all vpn site link connections to the gateway.
connectionBandwidth Integer
Expected bandwidth in MBPS.
dpdTimeoutSeconds Integer
DPD timeout in seconds for vpn connection.
enableBgp Boolean
EnableBgp flag.
enableInternetSecurity Boolean
Enable internet security.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ipsecPolicies List<IpsecPolicy>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite SubResource
Id of the connected vpn site.
routingConfiguration RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight Integer
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
trafficSelectorPolicies List<TrafficSelectorPolicy>
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpnLinkConnections List<VpnSiteLinkConnection>
List of all vpn site link connections to the gateway.
connectionBandwidth number
Expected bandwidth in MBPS.
dpdTimeoutSeconds number
DPD timeout in seconds for vpn connection.
enableBgp boolean
EnableBgp flag.
enableInternetSecurity boolean
Enable internet security.
enableRateLimiting boolean
EnableBgp flag.
id string
Resource ID.
ipsecPolicies IpsecPolicy[]
The IPSec Policies to be considered by this connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite SubResource
Id of the connected vpn site.
routingConfiguration RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight number
Routing weight for vpn connection.
sharedKey string
SharedKey for the vpn connection.
trafficSelectorPolicies TrafficSelectorPolicy[]
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType string | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpnLinkConnections VpnSiteLinkConnection[]
List of all vpn site link connections to the gateway.
connection_bandwidth int
Expected bandwidth in MBPS.
dpd_timeout_seconds int
DPD timeout in seconds for vpn connection.
enable_bgp bool
EnableBgp flag.
enable_internet_security bool
Enable internet security.
enable_rate_limiting bool
EnableBgp flag.
id str
Resource ID.
ipsec_policies Sequence[IpsecPolicy]
The IPSec Policies to be considered by this connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remote_vpn_site SubResource
Id of the connected vpn site.
routing_configuration RoutingConfiguration
The Routing Configuration indicating the associated and propagated route tables on this connection.
routing_weight int
Routing weight for vpn connection.
shared_key str
SharedKey for the vpn connection.
traffic_selector_policies Sequence[TrafficSelectorPolicy]
The Traffic Selector Policies to be considered by this connection.
use_local_azure_ip_address bool
Use local azure ip to initiate connection.
use_policy_based_traffic_selectors bool
Enable policy-based traffic selectors.
vpn_connection_protocol_type str | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpn_link_connections Sequence[VpnSiteLinkConnection]
List of all vpn site link connections to the gateway.
connectionBandwidth Number
Expected bandwidth in MBPS.
dpdTimeoutSeconds Number
DPD timeout in seconds for vpn connection.
enableBgp Boolean
EnableBgp flag.
enableInternetSecurity Boolean
Enable internet security.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ipsecPolicies List<Property Map>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite Property Map
Id of the connected vpn site.
routingConfiguration Property Map
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight Number
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
trafficSelectorPolicies List<Property Map>
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String | "IKEv2" | "IKEv1"
Connection protocol used for this connection.
vpnLinkConnections List<Property Map>
List of all vpn site link connections to the gateway.

VpnConnectionResponse
, VpnConnectionResponseArgs

ConnectionStatus This property is required. string
The connection status.
EgressBytesTransferred This property is required. double
Egress bytes transferred.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressBytesTransferred This property is required. double
Ingress bytes transferred.
ProvisioningState This property is required. string
The provisioning state of the VPN connection resource.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
DPD timeout in seconds for vpn connection.
EnableBgp bool
EnableBgp flag.
EnableInternetSecurity bool
Enable internet security.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IpsecPolicies List<Pulumi.AzureNative.Network.Inputs.IpsecPolicyResponse>
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RemoteVpnSite Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Id of the connected vpn site.
RoutingConfiguration Pulumi.AzureNative.Network.Inputs.RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
TrafficSelectorPolicies List<Pulumi.AzureNative.Network.Inputs.TrafficSelectorPolicyResponse>
The Traffic Selector Policies to be considered by this connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string
Connection protocol used for this connection.
VpnLinkConnections List<Pulumi.AzureNative.Network.Inputs.VpnSiteLinkConnectionResponse>
List of all vpn site link connections to the gateway.
ConnectionStatus This property is required. string
The connection status.
EgressBytesTransferred This property is required. float64
Egress bytes transferred.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressBytesTransferred This property is required. float64
Ingress bytes transferred.
ProvisioningState This property is required. string
The provisioning state of the VPN connection resource.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
DPD timeout in seconds for vpn connection.
EnableBgp bool
EnableBgp flag.
EnableInternetSecurity bool
Enable internet security.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IpsecPolicies []IpsecPolicyResponse
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RemoteVpnSite SubResourceResponse
Id of the connected vpn site.
RoutingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
TrafficSelectorPolicies []TrafficSelectorPolicyResponse
The Traffic Selector Policies to be considered by this connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string
Connection protocol used for this connection.
VpnLinkConnections []VpnSiteLinkConnectionResponse
List of all vpn site link connections to the gateway.
connectionStatus This property is required. String
The connection status.
egressBytesTransferred This property is required. Double
Egress bytes transferred.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. Double
Ingress bytes transferred.
provisioningState This property is required. String
The provisioning state of the VPN connection resource.
connectionBandwidth Integer
Expected bandwidth in MBPS.
dpdTimeoutSeconds Integer
DPD timeout in seconds for vpn connection.
enableBgp Boolean
EnableBgp flag.
enableInternetSecurity Boolean
Enable internet security.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ipsecPolicies List<IpsecPolicyResponse>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite SubResourceResponse
Id of the connected vpn site.
routingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight Integer
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
trafficSelectorPolicies List<TrafficSelectorPolicyResponse>
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String
Connection protocol used for this connection.
vpnLinkConnections List<VpnSiteLinkConnectionResponse>
List of all vpn site link connections to the gateway.
connectionStatus This property is required. string
The connection status.
egressBytesTransferred This property is required. number
Egress bytes transferred.
etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. number
Ingress bytes transferred.
provisioningState This property is required. string
The provisioning state of the VPN connection resource.
connectionBandwidth number
Expected bandwidth in MBPS.
dpdTimeoutSeconds number
DPD timeout in seconds for vpn connection.
enableBgp boolean
EnableBgp flag.
enableInternetSecurity boolean
Enable internet security.
enableRateLimiting boolean
EnableBgp flag.
id string
Resource ID.
ipsecPolicies IpsecPolicyResponse[]
The IPSec Policies to be considered by this connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite SubResourceResponse
Id of the connected vpn site.
routingConfiguration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight number
Routing weight for vpn connection.
sharedKey string
SharedKey for the vpn connection.
trafficSelectorPolicies TrafficSelectorPolicyResponse[]
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType string
Connection protocol used for this connection.
vpnLinkConnections VpnSiteLinkConnectionResponse[]
List of all vpn site link connections to the gateway.
connection_status This property is required. str
The connection status.
egress_bytes_transferred This property is required. float
Egress bytes transferred.
etag This property is required. str
A unique read-only string that changes whenever the resource is updated.
ingress_bytes_transferred This property is required. float
Ingress bytes transferred.
provisioning_state This property is required. str
The provisioning state of the VPN connection resource.
connection_bandwidth int
Expected bandwidth in MBPS.
dpd_timeout_seconds int
DPD timeout in seconds for vpn connection.
enable_bgp bool
EnableBgp flag.
enable_internet_security bool
Enable internet security.
enable_rate_limiting bool
EnableBgp flag.
id str
Resource ID.
ipsec_policies Sequence[IpsecPolicyResponse]
The IPSec Policies to be considered by this connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remote_vpn_site SubResourceResponse
Id of the connected vpn site.
routing_configuration RoutingConfigurationResponse
The Routing Configuration indicating the associated and propagated route tables on this connection.
routing_weight int
Routing weight for vpn connection.
shared_key str
SharedKey for the vpn connection.
traffic_selector_policies Sequence[TrafficSelectorPolicyResponse]
The Traffic Selector Policies to be considered by this connection.
use_local_azure_ip_address bool
Use local azure ip to initiate connection.
use_policy_based_traffic_selectors bool
Enable policy-based traffic selectors.
vpn_connection_protocol_type str
Connection protocol used for this connection.
vpn_link_connections Sequence[VpnSiteLinkConnectionResponse]
List of all vpn site link connections to the gateway.
connectionStatus This property is required. String
The connection status.
egressBytesTransferred This property is required. Number
Egress bytes transferred.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. Number
Ingress bytes transferred.
provisioningState This property is required. String
The provisioning state of the VPN connection resource.
connectionBandwidth Number
Expected bandwidth in MBPS.
dpdTimeoutSeconds Number
DPD timeout in seconds for vpn connection.
enableBgp Boolean
EnableBgp flag.
enableInternetSecurity Boolean
Enable internet security.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ipsecPolicies List<Property Map>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
remoteVpnSite Property Map
Id of the connected vpn site.
routingConfiguration Property Map
The Routing Configuration indicating the associated and propagated route tables on this connection.
routingWeight Number
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
trafficSelectorPolicies List<Property Map>
The Traffic Selector Policies to be considered by this connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String
Connection protocol used for this connection.
vpnLinkConnections List<Property Map>
List of all vpn site link connections to the gateway.

VpnGatewayIpConfigurationResponse
, VpnGatewayIpConfigurationResponseArgs

Id string
The identifier of the IP configuration for a VPN Gateway.
PrivateIpAddress string
The private IP address of this IP configuration.
PublicIpAddress string
The public IP address of this IP configuration.
Id string
The identifier of the IP configuration for a VPN Gateway.
PrivateIpAddress string
The private IP address of this IP configuration.
PublicIpAddress string
The public IP address of this IP configuration.
id String
The identifier of the IP configuration for a VPN Gateway.
privateIpAddress String
The private IP address of this IP configuration.
publicIpAddress String
The public IP address of this IP configuration.
id string
The identifier of the IP configuration for a VPN Gateway.
privateIpAddress string
The private IP address of this IP configuration.
publicIpAddress string
The public IP address of this IP configuration.
id str
The identifier of the IP configuration for a VPN Gateway.
private_ip_address str
The private IP address of this IP configuration.
public_ip_address str
The public IP address of this IP configuration.
id String
The identifier of the IP configuration for a VPN Gateway.
privateIpAddress String
The private IP address of this IP configuration.
publicIpAddress String
The public IP address of this IP configuration.

VpnGatewayNatRule
, VpnGatewayNatRuleArgs

ExternalMappings List<Pulumi.AzureNative.Network.Inputs.VpnNatRuleMapping>
The private IP address external mapping for NAT.
Id string
Resource ID.
InternalMappings List<Pulumi.AzureNative.Network.Inputs.VpnNatRuleMapping>
The private IP address internal mapping for NAT.
IpConfigurationId string
The IP Configuration ID this NAT rule applies to.
Mode string | Pulumi.AzureNative.Network.VpnNatRuleMode
The Source NAT direction of a VPN NAT.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
Type string | Pulumi.AzureNative.Network.VpnNatRuleType
The type of NAT rule for VPN NAT.
ExternalMappings []VpnNatRuleMapping
The private IP address external mapping for NAT.
Id string
Resource ID.
InternalMappings []VpnNatRuleMapping
The private IP address internal mapping for NAT.
IpConfigurationId string
The IP Configuration ID this NAT rule applies to.
Mode string | VpnNatRuleMode
The Source NAT direction of a VPN NAT.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
Type string | VpnNatRuleType
The type of NAT rule for VPN NAT.
externalMappings List<VpnNatRuleMapping>
The private IP address external mapping for NAT.
id String
Resource ID.
internalMappings List<VpnNatRuleMapping>
The private IP address internal mapping for NAT.
ipConfigurationId String
The IP Configuration ID this NAT rule applies to.
mode String | VpnNatRuleMode
The Source NAT direction of a VPN NAT.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
type String | VpnNatRuleType
The type of NAT rule for VPN NAT.
externalMappings VpnNatRuleMapping[]
The private IP address external mapping for NAT.
id string
Resource ID.
internalMappings VpnNatRuleMapping[]
The private IP address internal mapping for NAT.
ipConfigurationId string
The IP Configuration ID this NAT rule applies to.
mode string | VpnNatRuleMode
The Source NAT direction of a VPN NAT.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
type string | VpnNatRuleType
The type of NAT rule for VPN NAT.
external_mappings Sequence[VpnNatRuleMapping]
The private IP address external mapping for NAT.
id str
Resource ID.
internal_mappings Sequence[VpnNatRuleMapping]
The private IP address internal mapping for NAT.
ip_configuration_id str
The IP Configuration ID this NAT rule applies to.
mode str | VpnNatRuleMode
The Source NAT direction of a VPN NAT.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
type str | VpnNatRuleType
The type of NAT rule for VPN NAT.
externalMappings List<Property Map>
The private IP address external mapping for NAT.
id String
Resource ID.
internalMappings List<Property Map>
The private IP address internal mapping for NAT.
ipConfigurationId String
The IP Configuration ID this NAT rule applies to.
mode String | "EgressSnat" | "IngressSnat"
The Source NAT direction of a VPN NAT.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
type String | "Static" | "Dynamic"
The type of NAT rule for VPN NAT.

VpnGatewayNatRuleResponse
, VpnGatewayNatRuleResponseArgs

EgressVpnSiteLinkConnections This property is required. List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
List of egress VpnSiteLinkConnections.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressVpnSiteLinkConnections This property is required. List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
List of ingress VpnSiteLinkConnections.
ProvisioningState This property is required. string
The provisioning state of the NAT Rule resource.
Type This property is required. string
Resource type.
ExternalMappings List<Pulumi.AzureNative.Network.Inputs.VpnNatRuleMappingResponse>
The private IP address external mapping for NAT.
Id string
Resource ID.
InternalMappings List<Pulumi.AzureNative.Network.Inputs.VpnNatRuleMappingResponse>
The private IP address internal mapping for NAT.
IpConfigurationId string
The IP Configuration ID this NAT rule applies to.
Mode string
The Source NAT direction of a VPN NAT.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
EgressVpnSiteLinkConnections This property is required. []SubResourceResponse
List of egress VpnSiteLinkConnections.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressVpnSiteLinkConnections This property is required. []SubResourceResponse
List of ingress VpnSiteLinkConnections.
ProvisioningState This property is required. string
The provisioning state of the NAT Rule resource.
Type This property is required. string
Resource type.
ExternalMappings []VpnNatRuleMappingResponse
The private IP address external mapping for NAT.
Id string
Resource ID.
InternalMappings []VpnNatRuleMappingResponse
The private IP address internal mapping for NAT.
IpConfigurationId string
The IP Configuration ID this NAT rule applies to.
Mode string
The Source NAT direction of a VPN NAT.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
egressVpnSiteLinkConnections This property is required. List<SubResourceResponse>
List of egress VpnSiteLinkConnections.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressVpnSiteLinkConnections This property is required. List<SubResourceResponse>
List of ingress VpnSiteLinkConnections.
provisioningState This property is required. String
The provisioning state of the NAT Rule resource.
type This property is required. String
Resource type.
externalMappings List<VpnNatRuleMappingResponse>
The private IP address external mapping for NAT.
id String
Resource ID.
internalMappings List<VpnNatRuleMappingResponse>
The private IP address internal mapping for NAT.
ipConfigurationId String
The IP Configuration ID this NAT rule applies to.
mode String
The Source NAT direction of a VPN NAT.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
egressVpnSiteLinkConnections This property is required. SubResourceResponse[]
List of egress VpnSiteLinkConnections.
etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ingressVpnSiteLinkConnections This property is required. SubResourceResponse[]
List of ingress VpnSiteLinkConnections.
provisioningState This property is required. string
The provisioning state of the NAT Rule resource.
type This property is required. string
Resource type.
externalMappings VpnNatRuleMappingResponse[]
The private IP address external mapping for NAT.
id string
Resource ID.
internalMappings VpnNatRuleMappingResponse[]
The private IP address internal mapping for NAT.
ipConfigurationId string
The IP Configuration ID this NAT rule applies to.
mode string
The Source NAT direction of a VPN NAT.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
egress_vpn_site_link_connections This property is required. Sequence[SubResourceResponse]
List of egress VpnSiteLinkConnections.
etag This property is required. str
A unique read-only string that changes whenever the resource is updated.
ingress_vpn_site_link_connections This property is required. Sequence[SubResourceResponse]
List of ingress VpnSiteLinkConnections.
provisioning_state This property is required. str
The provisioning state of the NAT Rule resource.
type This property is required. str
Resource type.
external_mappings Sequence[VpnNatRuleMappingResponse]
The private IP address external mapping for NAT.
id str
Resource ID.
internal_mappings Sequence[VpnNatRuleMappingResponse]
The private IP address internal mapping for NAT.
ip_configuration_id str
The IP Configuration ID this NAT rule applies to.
mode str
The Source NAT direction of a VPN NAT.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
egressVpnSiteLinkConnections This property is required. List<Property Map>
List of egress VpnSiteLinkConnections.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressVpnSiteLinkConnections This property is required. List<Property Map>
List of ingress VpnSiteLinkConnections.
provisioningState This property is required. String
The provisioning state of the NAT Rule resource.
type This property is required. String
Resource type.
externalMappings List<Property Map>
The private IP address external mapping for NAT.
id String
Resource ID.
internalMappings List<Property Map>
The private IP address internal mapping for NAT.
ipConfigurationId String
The IP Configuration ID this NAT rule applies to.
mode String
The Source NAT direction of a VPN NAT.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.

VpnLinkConnectionMode
, VpnLinkConnectionModeArgs

Default
Default
ResponderOnly
ResponderOnly
InitiatorOnly
InitiatorOnly
VpnLinkConnectionModeDefault
Default
VpnLinkConnectionModeResponderOnly
ResponderOnly
VpnLinkConnectionModeInitiatorOnly
InitiatorOnly
Default
Default
ResponderOnly
ResponderOnly
InitiatorOnly
InitiatorOnly
Default
Default
ResponderOnly
ResponderOnly
InitiatorOnly
InitiatorOnly
DEFAULT
Default
RESPONDER_ONLY
ResponderOnly
INITIATOR_ONLY
InitiatorOnly
"Default"
Default
"ResponderOnly"
ResponderOnly
"InitiatorOnly"
InitiatorOnly

VpnNatRuleMapping
, VpnNatRuleMappingArgs

AddressSpace string
Address space for Vpn NatRule mapping.
PortRange string
Port range for Vpn NatRule mapping.
AddressSpace string
Address space for Vpn NatRule mapping.
PortRange string
Port range for Vpn NatRule mapping.
addressSpace String
Address space for Vpn NatRule mapping.
portRange String
Port range for Vpn NatRule mapping.
addressSpace string
Address space for Vpn NatRule mapping.
portRange string
Port range for Vpn NatRule mapping.
address_space str
Address space for Vpn NatRule mapping.
port_range str
Port range for Vpn NatRule mapping.
addressSpace String
Address space for Vpn NatRule mapping.
portRange String
Port range for Vpn NatRule mapping.

VpnNatRuleMappingResponse
, VpnNatRuleMappingResponseArgs

AddressSpace string
Address space for Vpn NatRule mapping.
PortRange string
Port range for Vpn NatRule mapping.
AddressSpace string
Address space for Vpn NatRule mapping.
PortRange string
Port range for Vpn NatRule mapping.
addressSpace String
Address space for Vpn NatRule mapping.
portRange String
Port range for Vpn NatRule mapping.
addressSpace string
Address space for Vpn NatRule mapping.
portRange string
Port range for Vpn NatRule mapping.
address_space str
Address space for Vpn NatRule mapping.
port_range str
Port range for Vpn NatRule mapping.
addressSpace String
Address space for Vpn NatRule mapping.
portRange String
Port range for Vpn NatRule mapping.

VpnNatRuleMode
, VpnNatRuleModeArgs

EgressSnat
EgressSnat
IngressSnat
IngressSnat
VpnNatRuleModeEgressSnat
EgressSnat
VpnNatRuleModeIngressSnat
IngressSnat
EgressSnat
EgressSnat
IngressSnat
IngressSnat
EgressSnat
EgressSnat
IngressSnat
IngressSnat
EGRESS_SNAT
EgressSnat
INGRESS_SNAT
IngressSnat
"EgressSnat"
EgressSnat
"IngressSnat"
IngressSnat

VpnNatRuleType
, VpnNatRuleTypeArgs

Static
Static
Dynamic
Dynamic
VpnNatRuleTypeStatic
Static
VpnNatRuleTypeDynamic
Dynamic
Static
Static
Dynamic
Dynamic
Static
Static
Dynamic
Dynamic
STATIC
Static
DYNAMIC
Dynamic
"Static"
Static
"Dynamic"
Dynamic

VpnSiteLinkConnection
, VpnSiteLinkConnectionArgs

ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
EgressNatRules List<Pulumi.AzureNative.Network.Inputs.SubResource>
List of egress NatRules.
EnableBgp bool
EnableBgp flag.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IngressNatRules List<Pulumi.AzureNative.Network.Inputs.SubResource>
List of ingress NatRules.
IpsecPolicies List<Pulumi.AzureNative.Network.Inputs.IpsecPolicy>
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string | Pulumi.AzureNative.Network.VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
VpnGatewayCustomBgpAddresses List<Pulumi.AzureNative.Network.Inputs.GatewayCustomBgpIpAddressIpConfiguration>
vpnGatewayCustomBgpAddresses used by this connection.
VpnLinkConnectionMode string | Pulumi.AzureNative.Network.VpnLinkConnectionMode
Vpn link connection mode.
VpnSiteLink Pulumi.AzureNative.Network.Inputs.SubResource
Id of the connected vpn site link.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
EgressNatRules []SubResource
List of egress NatRules.
EnableBgp bool
EnableBgp flag.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IngressNatRules []SubResource
List of ingress NatRules.
IpsecPolicies []IpsecPolicy
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
VpnGatewayCustomBgpAddresses []GatewayCustomBgpIpAddressIpConfiguration
vpnGatewayCustomBgpAddresses used by this connection.
VpnLinkConnectionMode string | VpnLinkConnectionMode
Vpn link connection mode.
VpnSiteLink SubResource
Id of the connected vpn site link.
connectionBandwidth Integer
Expected bandwidth in MBPS.
dpdTimeoutSeconds Integer
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules List<SubResource>
List of egress NatRules.
enableBgp Boolean
EnableBgp flag.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ingressNatRules List<SubResource>
List of ingress NatRules.
ipsecPolicies List<IpsecPolicy>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight Integer
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses List<GatewayCustomBgpIpAddressIpConfiguration>
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode String | VpnLinkConnectionMode
Vpn link connection mode.
vpnSiteLink SubResource
Id of the connected vpn site link.
connectionBandwidth number
Expected bandwidth in MBPS.
dpdTimeoutSeconds number
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules SubResource[]
List of egress NatRules.
enableBgp boolean
EnableBgp flag.
enableRateLimiting boolean
EnableBgp flag.
id string
Resource ID.
ingressNatRules SubResource[]
List of ingress NatRules.
ipsecPolicies IpsecPolicy[]
The IPSec Policies to be considered by this connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight number
Routing weight for vpn connection.
sharedKey string
SharedKey for the vpn connection.
useLocalAzureIpAddress boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType string | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses GatewayCustomBgpIpAddressIpConfiguration[]
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode string | VpnLinkConnectionMode
Vpn link connection mode.
vpnSiteLink SubResource
Id of the connected vpn site link.
connection_bandwidth int
Expected bandwidth in MBPS.
dpd_timeout_seconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
egress_nat_rules Sequence[SubResource]
List of egress NatRules.
enable_bgp bool
EnableBgp flag.
enable_rate_limiting bool
EnableBgp flag.
id str
Resource ID.
ingress_nat_rules Sequence[SubResource]
List of ingress NatRules.
ipsec_policies Sequence[IpsecPolicy]
The IPSec Policies to be considered by this connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routing_weight int
Routing weight for vpn connection.
shared_key str
SharedKey for the vpn connection.
use_local_azure_ip_address bool
Use local azure ip to initiate connection.
use_policy_based_traffic_selectors bool
Enable policy-based traffic selectors.
vpn_connection_protocol_type str | VirtualNetworkGatewayConnectionProtocol
Connection protocol used for this connection.
vpn_gateway_custom_bgp_addresses Sequence[GatewayCustomBgpIpAddressIpConfiguration]
vpnGatewayCustomBgpAddresses used by this connection.
vpn_link_connection_mode str | VpnLinkConnectionMode
Vpn link connection mode.
vpn_site_link SubResource
Id of the connected vpn site link.
connectionBandwidth Number
Expected bandwidth in MBPS.
dpdTimeoutSeconds Number
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules List<Property Map>
List of egress NatRules.
enableBgp Boolean
EnableBgp flag.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ingressNatRules List<Property Map>
List of ingress NatRules.
ipsecPolicies List<Property Map>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight Number
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String | "IKEv2" | "IKEv1"
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses List<Property Map>
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode String | "Default" | "ResponderOnly" | "InitiatorOnly"
Vpn link connection mode.
vpnSiteLink Property Map
Id of the connected vpn site link.

VpnSiteLinkConnectionResponse
, VpnSiteLinkConnectionResponseArgs

ConnectionStatus This property is required. string
The connection status.
EgressBytesTransferred This property is required. double
Egress bytes transferred.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressBytesTransferred This property is required. double
Ingress bytes transferred.
ProvisioningState This property is required. string
The provisioning state of the VPN site link connection resource.
Type This property is required. string
Resource type.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
EgressNatRules List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
List of egress NatRules.
EnableBgp bool
EnableBgp flag.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IngressNatRules List<Pulumi.AzureNative.Network.Inputs.SubResourceResponse>
List of ingress NatRules.
IpsecPolicies List<Pulumi.AzureNative.Network.Inputs.IpsecPolicyResponse>
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string
Connection protocol used for this connection.
VpnGatewayCustomBgpAddresses List<Pulumi.AzureNative.Network.Inputs.GatewayCustomBgpIpAddressIpConfigurationResponse>
vpnGatewayCustomBgpAddresses used by this connection.
VpnLinkConnectionMode string
Vpn link connection mode.
VpnSiteLink Pulumi.AzureNative.Network.Inputs.SubResourceResponse
Id of the connected vpn site link.
ConnectionStatus This property is required. string
The connection status.
EgressBytesTransferred This property is required. float64
Egress bytes transferred.
Etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
IngressBytesTransferred This property is required. float64
Ingress bytes transferred.
ProvisioningState This property is required. string
The provisioning state of the VPN site link connection resource.
Type This property is required. string
Resource type.
ConnectionBandwidth int
Expected bandwidth in MBPS.
DpdTimeoutSeconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
EgressNatRules []SubResourceResponse
List of egress NatRules.
EnableBgp bool
EnableBgp flag.
EnableRateLimiting bool
EnableBgp flag.
Id string
Resource ID.
IngressNatRules []SubResourceResponse
List of ingress NatRules.
IpsecPolicies []IpsecPolicyResponse
The IPSec Policies to be considered by this connection.
Name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
RoutingWeight int
Routing weight for vpn connection.
SharedKey string
SharedKey for the vpn connection.
UseLocalAzureIpAddress bool
Use local azure ip to initiate connection.
UsePolicyBasedTrafficSelectors bool
Enable policy-based traffic selectors.
VpnConnectionProtocolType string
Connection protocol used for this connection.
VpnGatewayCustomBgpAddresses []GatewayCustomBgpIpAddressIpConfigurationResponse
vpnGatewayCustomBgpAddresses used by this connection.
VpnLinkConnectionMode string
Vpn link connection mode.
VpnSiteLink SubResourceResponse
Id of the connected vpn site link.
connectionStatus This property is required. String
The connection status.
egressBytesTransferred This property is required. Double
Egress bytes transferred.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. Double
Ingress bytes transferred.
provisioningState This property is required. String
The provisioning state of the VPN site link connection resource.
type This property is required. String
Resource type.
connectionBandwidth Integer
Expected bandwidth in MBPS.
dpdTimeoutSeconds Integer
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules List<SubResourceResponse>
List of egress NatRules.
enableBgp Boolean
EnableBgp flag.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ingressNatRules List<SubResourceResponse>
List of ingress NatRules.
ipsecPolicies List<IpsecPolicyResponse>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight Integer
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses List<GatewayCustomBgpIpAddressIpConfigurationResponse>
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode String
Vpn link connection mode.
vpnSiteLink SubResourceResponse
Id of the connected vpn site link.
connectionStatus This property is required. string
The connection status.
egressBytesTransferred This property is required. number
Egress bytes transferred.
etag This property is required. string
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. number
Ingress bytes transferred.
provisioningState This property is required. string
The provisioning state of the VPN site link connection resource.
type This property is required. string
Resource type.
connectionBandwidth number
Expected bandwidth in MBPS.
dpdTimeoutSeconds number
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules SubResourceResponse[]
List of egress NatRules.
enableBgp boolean
EnableBgp flag.
enableRateLimiting boolean
EnableBgp flag.
id string
Resource ID.
ingressNatRules SubResourceResponse[]
List of ingress NatRules.
ipsecPolicies IpsecPolicyResponse[]
The IPSec Policies to be considered by this connection.
name string
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight number
Routing weight for vpn connection.
sharedKey string
SharedKey for the vpn connection.
useLocalAzureIpAddress boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType string
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses GatewayCustomBgpIpAddressIpConfigurationResponse[]
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode string
Vpn link connection mode.
vpnSiteLink SubResourceResponse
Id of the connected vpn site link.
connection_status This property is required. str
The connection status.
egress_bytes_transferred This property is required. float
Egress bytes transferred.
etag This property is required. str
A unique read-only string that changes whenever the resource is updated.
ingress_bytes_transferred This property is required. float
Ingress bytes transferred.
provisioning_state This property is required. str
The provisioning state of the VPN site link connection resource.
type This property is required. str
Resource type.
connection_bandwidth int
Expected bandwidth in MBPS.
dpd_timeout_seconds int
Dead Peer Detection timeout in seconds for VpnLink connection.
egress_nat_rules Sequence[SubResourceResponse]
List of egress NatRules.
enable_bgp bool
EnableBgp flag.
enable_rate_limiting bool
EnableBgp flag.
id str
Resource ID.
ingress_nat_rules Sequence[SubResourceResponse]
List of ingress NatRules.
ipsec_policies Sequence[IpsecPolicyResponse]
The IPSec Policies to be considered by this connection.
name str
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routing_weight int
Routing weight for vpn connection.
shared_key str
SharedKey for the vpn connection.
use_local_azure_ip_address bool
Use local azure ip to initiate connection.
use_policy_based_traffic_selectors bool
Enable policy-based traffic selectors.
vpn_connection_protocol_type str
Connection protocol used for this connection.
vpn_gateway_custom_bgp_addresses Sequence[GatewayCustomBgpIpAddressIpConfigurationResponse]
vpnGatewayCustomBgpAddresses used by this connection.
vpn_link_connection_mode str
Vpn link connection mode.
vpn_site_link SubResourceResponse
Id of the connected vpn site link.
connectionStatus This property is required. String
The connection status.
egressBytesTransferred This property is required. Number
Egress bytes transferred.
etag This property is required. String
A unique read-only string that changes whenever the resource is updated.
ingressBytesTransferred This property is required. Number
Ingress bytes transferred.
provisioningState This property is required. String
The provisioning state of the VPN site link connection resource.
type This property is required. String
Resource type.
connectionBandwidth Number
Expected bandwidth in MBPS.
dpdTimeoutSeconds Number
Dead Peer Detection timeout in seconds for VpnLink connection.
egressNatRules List<Property Map>
List of egress NatRules.
enableBgp Boolean
EnableBgp flag.
enableRateLimiting Boolean
EnableBgp flag.
id String
Resource ID.
ingressNatRules List<Property Map>
List of ingress NatRules.
ipsecPolicies List<Property Map>
The IPSec Policies to be considered by this connection.
name String
The name of the resource that is unique within a resource group. This name can be used to access the resource.
routingWeight Number
Routing weight for vpn connection.
sharedKey String
SharedKey for the vpn connection.
useLocalAzureIpAddress Boolean
Use local azure ip to initiate connection.
usePolicyBasedTrafficSelectors Boolean
Enable policy-based traffic selectors.
vpnConnectionProtocolType String
Connection protocol used for this connection.
vpnGatewayCustomBgpAddresses List<Property Map>
vpnGatewayCustomBgpAddresses used by this connection.
vpnLinkConnectionMode String
Vpn link connection mode.
vpnSiteLink Property Map
Id of the connected vpn site link.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:VpnGateway gateway1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnGateways/{gatewayName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi