azure-native.network.VirtualNetworkGateway
Explore with Pulumi AI
A common class for general resource information. API Version: 2020-11-01.
Example Usage
UpdateVirtualNetworkGateway
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualNetworkGateway = new AzureNative.Network.VirtualNetworkGateway("virtualNetworkGateway", new()
{
ActiveActive = false,
BgpSettings = new AzureNative.Network.Inputs.BgpSettingsArgs
{
Asn = 65515,
BgpPeeringAddress = "10.0.1.30",
PeerWeight = 0,
},
CustomRoutes = new AzureNative.Network.Inputs.AddressSpaceArgs
{
AddressPrefixes = new[]
{
"101.168.0.6/32",
},
},
EnableBgp = false,
EnableDnsForwarding = true,
GatewayType = "Vpn",
IpConfigurations = new[]
{
new AzureNative.Network.Inputs.VirtualNetworkGatewayIPConfigurationArgs
{
Name = "gwipconfig1",
PrivateIPAllocationMethod = "Dynamic",
PublicIPAddress = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip",
},
Subnet = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet",
},
},
},
Location = "centralus",
ResourceGroupName = "rg1",
Sku = new AzureNative.Network.Inputs.VirtualNetworkGatewaySkuArgs
{
Name = "VpnGw1",
Tier = "VpnGw1",
},
VirtualNetworkGatewayName = "vpngw",
VpnClientConfiguration = new AzureNative.Network.Inputs.VpnClientConfigurationArgs
{
RadiusServers = new[]
{
new AzureNative.Network.Inputs.RadiusServerArgs
{
RadiusServerAddress = "10.2.0.0",
RadiusServerScore = 20,
RadiusServerSecret = "radiusServerSecret",
},
},
VpnClientProtocols = new[]
{
"OpenVPN",
},
VpnClientRevokedCertificates = new[] {},
VpnClientRootCertificates = new[] {},
},
VpnType = "RouteBased",
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewVirtualNetworkGateway(ctx, "virtualNetworkGateway", &network.VirtualNetworkGatewayArgs{
ActiveActive: pulumi.Bool(false),
BgpSettings: &network.BgpSettingsArgs{
Asn: pulumi.Float64(65515),
BgpPeeringAddress: pulumi.String("10.0.1.30"),
PeerWeight: pulumi.Int(0),
},
CustomRoutes: &network.AddressSpaceArgs{
AddressPrefixes: pulumi.StringArray{
pulumi.String("101.168.0.6/32"),
},
},
EnableBgp: pulumi.Bool(false),
EnableDnsForwarding: pulumi.Bool(true),
GatewayType: pulumi.String("Vpn"),
IpConfigurations: []network.VirtualNetworkGatewayIPConfigurationArgs{
{
Name: pulumi.String("gwipconfig1"),
PrivateIPAllocationMethod: pulumi.String("Dynamic"),
PublicIPAddress: {
Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip"),
},
Subnet: {
Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"),
},
},
},
Location: pulumi.String("centralus"),
ResourceGroupName: pulumi.String("rg1"),
Sku: &network.VirtualNetworkGatewaySkuArgs{
Name: pulumi.String("VpnGw1"),
Tier: pulumi.String("VpnGw1"),
},
VirtualNetworkGatewayName: pulumi.String("vpngw"),
VpnClientConfiguration: network.VpnClientConfigurationResponse{
RadiusServers: network.RadiusServerArray{
&network.RadiusServerArgs{
RadiusServerAddress: pulumi.String("10.2.0.0"),
RadiusServerScore: pulumi.Float64(20),
RadiusServerSecret: pulumi.String("radiusServerSecret"),
},
},
VpnClientProtocols: pulumi.StringArray{
pulumi.String("OpenVPN"),
},
VpnClientRevokedCertificates: network.VpnClientRevokedCertificateArray{},
VpnClientRootCertificates: network.VpnClientRootCertificateArray{},
},
VpnType: pulumi.String("RouteBased"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.VirtualNetworkGateway;
import com.pulumi.azurenative.network.VirtualNetworkGatewayArgs;
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 virtualNetworkGateway = new VirtualNetworkGateway("virtualNetworkGateway", VirtualNetworkGatewayArgs.builder()
.activeActive(false)
.bgpSettings(Map.ofEntries(
Map.entry("asn", 65515),
Map.entry("bgpPeeringAddress", "10.0.1.30"),
Map.entry("peerWeight", 0)
))
.customRoutes(Map.of("addressPrefixes", "101.168.0.6/32"))
.enableBgp(false)
.enableDnsForwarding(true)
.gatewayType("Vpn")
.ipConfigurations(Map.ofEntries(
Map.entry("name", "gwipconfig1"),
Map.entry("privateIPAllocationMethod", "Dynamic"),
Map.entry("publicIPAddress", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip")),
Map.entry("subnet", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet"))
))
.location("centralus")
.resourceGroupName("rg1")
.sku(Map.ofEntries(
Map.entry("name", "VpnGw1"),
Map.entry("tier", "VpnGw1")
))
.virtualNetworkGatewayName("vpngw")
.vpnClientConfiguration(Map.ofEntries(
Map.entry("radiusServers", Map.ofEntries(
Map.entry("radiusServerAddress", "10.2.0.0"),
Map.entry("radiusServerScore", 20),
Map.entry("radiusServerSecret", "radiusServerSecret")
)),
Map.entry("vpnClientProtocols", "OpenVPN"),
Map.entry("vpnClientRevokedCertificates", ),
Map.entry("vpnClientRootCertificates", )
))
.vpnType("RouteBased")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_network_gateway = azure_native.network.VirtualNetworkGateway("virtualNetworkGateway",
active_active=False,
bgp_settings=azure_native.network.BgpSettingsArgs(
asn=65515,
bgp_peering_address="10.0.1.30",
peer_weight=0,
),
custom_routes=azure_native.network.AddressSpaceArgs(
address_prefixes=["101.168.0.6/32"],
),
enable_bgp=False,
enable_dns_forwarding=True,
gateway_type="Vpn",
ip_configurations=[{
"name": "gwipconfig1",
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip",
),
"subnet": azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet",
),
}],
location="centralus",
resource_group_name="rg1",
sku=azure_native.network.VirtualNetworkGatewaySkuArgs(
name="VpnGw1",
tier="VpnGw1",
),
virtual_network_gateway_name="vpngw",
vpn_client_configuration=azure_native.network.VpnClientConfigurationResponseArgs(
radius_servers=[azure_native.network.RadiusServerArgs(
radius_server_address="10.2.0.0",
radius_server_score=20,
radius_server_secret="radiusServerSecret",
)],
vpn_client_protocols=["OpenVPN"],
vpn_client_revoked_certificates=[],
vpn_client_root_certificates=[],
),
vpn_type="RouteBased")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualNetworkGateway = new azure_native.network.VirtualNetworkGateway("virtualNetworkGateway", {
activeActive: false,
bgpSettings: {
asn: 65515,
bgpPeeringAddress: "10.0.1.30",
peerWeight: 0,
},
customRoutes: {
addressPrefixes: ["101.168.0.6/32"],
},
enableBgp: false,
enableDnsForwarding: true,
gatewayType: "Vpn",
ipConfigurations: [{
name: "gwipconfig1",
privateIPAllocationMethod: "Dynamic",
publicIPAddress: {
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip",
},
subnet: {
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet",
},
}],
location: "centralus",
resourceGroupName: "rg1",
sku: {
name: "VpnGw1",
tier: "VpnGw1",
},
virtualNetworkGatewayName: "vpngw",
vpnClientConfiguration: {
radiusServers: [{
radiusServerAddress: "10.2.0.0",
radiusServerScore: 20,
radiusServerSecret: "radiusServerSecret",
}],
vpnClientProtocols: ["OpenVPN"],
vpnClientRevokedCertificates: [],
vpnClientRootCertificates: [],
},
vpnType: "RouteBased",
});
resources:
virtualNetworkGateway:
type: azure-native:network:VirtualNetworkGateway
properties:
activeActive: false
bgpSettings:
asn: 65515
bgpPeeringAddress: 10.0.1.30
peerWeight: 0
customRoutes:
addressPrefixes:
- 101.168.0.6/32
enableBgp: false
enableDnsForwarding: true
gatewayType: Vpn
ipConfigurations:
- name: gwipconfig1
privateIPAllocationMethod: Dynamic
publicIPAddress:
id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/gwpip
subnet:
id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/GatewaySubnet
location: centralus
resourceGroupName: rg1
sku:
name: VpnGw1
tier: VpnGw1
virtualNetworkGatewayName: vpngw
vpnClientConfiguration:
radiusServers:
- radiusServerAddress: 10.2.0.0
radiusServerScore: 20
radiusServerSecret: radiusServerSecret
vpnClientProtocols:
- OpenVPN
vpnClientRevokedCertificates: []
vpnClientRootCertificates: []
vpnType: RouteBased
Create VirtualNetworkGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualNetworkGateway(name: string, args: VirtualNetworkGatewayArgs, opts?: CustomResourceOptions);
@overload
def VirtualNetworkGateway(resource_name: str,
args: VirtualNetworkGatewayInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualNetworkGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
ip_configurations: Optional[Sequence[VirtualNetworkGatewayIPConfigurationArgs]] = None,
vpn_type: Optional[Union[str, VpnType]] = None,
id: Optional[str] = None,
enable_dns_forwarding: Optional[bool] = None,
enable_private_ip_address: Optional[bool] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
gateway_default_site: Optional[SubResourceArgs] = None,
gateway_type: Optional[Union[str, VirtualNetworkGatewayType]] = None,
enable_bgp: Optional[bool] = None,
custom_routes: Optional[AddressSpaceArgs] = None,
bgp_settings: Optional[BgpSettingsArgs] = None,
location: Optional[str] = None,
sku: Optional[VirtualNetworkGatewaySkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
v_net_extended_location_resource_id: Optional[str] = None,
virtual_network_gateway_name: Optional[str] = None,
vpn_client_configuration: Optional[VpnClientConfigurationArgs] = None,
vpn_gateway_generation: Optional[Union[str, VpnGatewayGeneration]] = None,
active_active: Optional[bool] = None)
func NewVirtualNetworkGateway(ctx *Context, name string, args VirtualNetworkGatewayArgs, opts ...ResourceOption) (*VirtualNetworkGateway, error)
public VirtualNetworkGateway(string name, VirtualNetworkGatewayArgs args, CustomResourceOptions? opts = null)
public VirtualNetworkGateway(String name, VirtualNetworkGatewayArgs args)
public VirtualNetworkGateway(String name, VirtualNetworkGatewayArgs args, CustomResourceOptions options)
type: azure-native:network:VirtualNetworkGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VirtualNetworkGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VirtualNetworkGatewayInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VirtualNetworkGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualNetworkGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualNetworkGatewayArgs
- 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 virtualNetworkGatewayResource = new AzureNative.Network.VirtualNetworkGateway("virtualNetworkGatewayResource", new()
{
ResourceGroupName = "string",
IpConfigurations = new[]
{
{
{ "id", "string" },
{ "name", "string" },
{ "privateIPAllocationMethod", "string" },
{ "publicIPAddress",
{
{ "id", "string" },
} },
{ "subnet",
{
{ "id", "string" },
} },
},
},
VpnType = "string",
Id = "string",
EnableDnsForwarding = false,
EnablePrivateIpAddress = false,
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
GatewayDefaultSite =
{
{ "id", "string" },
},
GatewayType = "string",
EnableBgp = false,
CustomRoutes =
{
{ "addressPrefixes", new[]
{
"string",
} },
},
BgpSettings =
{
{ "asn", 0 },
{ "bgpPeeringAddress", "string" },
{ "bgpPeeringAddresses", new[]
{
{
{ "customBgpIpAddresses", new[]
{
"string",
} },
{ "ipconfigurationId", "string" },
},
} },
{ "peerWeight", 0 },
},
Location = "string",
Sku =
{
{ "name", "string" },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
VNetExtendedLocationResourceId = "string",
VirtualNetworkGatewayName = "string",
VpnClientConfiguration =
{
{ "aadAudience", "string" },
{ "aadIssuer", "string" },
{ "aadTenant", "string" },
{ "radiusServerAddress", "string" },
{ "radiusServerSecret", "string" },
{ "radiusServers", new[]
{
{
{ "radiusServerAddress", "string" },
{ "radiusServerScore", 0 },
{ "radiusServerSecret", "string" },
},
} },
{ "vpnAuthenticationTypes", new[]
{
"string",
} },
{ "vpnClientAddressPool",
{
{ "addressPrefixes", new[]
{
"string",
} },
} },
{ "vpnClientIpsecPolicies", new[]
{
{
{ "dhGroup", "string" },
{ "ikeEncryption", "string" },
{ "ikeIntegrity", "string" },
{ "ipsecEncryption", "string" },
{ "ipsecIntegrity", "string" },
{ "pfsGroup", "string" },
{ "saDataSizeKilobytes", 0 },
{ "saLifeTimeSeconds", 0 },
},
} },
{ "vpnClientProtocols", new[]
{
"string",
} },
{ "vpnClientRevokedCertificates", new[]
{
{
{ "id", "string" },
{ "name", "string" },
{ "thumbprint", "string" },
},
} },
{ "vpnClientRootCertificates", new[]
{
{
{ "publicCertData", "string" },
{ "id", "string" },
{ "name", "string" },
},
} },
},
VpnGatewayGeneration = "string",
ActiveActive = false,
});
example, err := network.NewVirtualNetworkGateway(ctx, "virtualNetworkGatewayResource", &network.VirtualNetworkGatewayArgs{
ResourceGroupName: "string",
IpConfigurations: []map[string]interface{}{
map[string]interface{}{
"id": "string",
"name": "string",
"privateIPAllocationMethod": "string",
"publicIPAddress": map[string]interface{}{
"id": "string",
},
"subnet": map[string]interface{}{
"id": "string",
},
},
},
VpnType: "string",
Id: "string",
EnableDnsForwarding: false,
EnablePrivateIpAddress: false,
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
GatewayDefaultSite: map[string]interface{}{
"id": "string",
},
GatewayType: "string",
EnableBgp: false,
CustomRoutes: map[string]interface{}{
"addressPrefixes": []string{
"string",
},
},
BgpSettings: map[string]interface{}{
"asn": 0,
"bgpPeeringAddress": "string",
"bgpPeeringAddresses": []map[string]interface{}{
map[string]interface{}{
"customBgpIpAddresses": []string{
"string",
},
"ipconfigurationId": "string",
},
},
"peerWeight": 0,
},
Location: "string",
Sku: map[string]interface{}{
"name": "string",
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
VNetExtendedLocationResourceId: "string",
VirtualNetworkGatewayName: "string",
VpnClientConfiguration: map[string]interface{}{
"aadAudience": "string",
"aadIssuer": "string",
"aadTenant": "string",
"radiusServerAddress": "string",
"radiusServerSecret": "string",
"radiusServers": []map[string]interface{}{
map[string]interface{}{
"radiusServerAddress": "string",
"radiusServerScore": 0,
"radiusServerSecret": "string",
},
},
"vpnAuthenticationTypes": []string{
"string",
},
"vpnClientAddressPool": map[string]interface{}{
"addressPrefixes": []string{
"string",
},
},
"vpnClientIpsecPolicies": []map[string]interface{}{
map[string]interface{}{
"dhGroup": "string",
"ikeEncryption": "string",
"ikeIntegrity": "string",
"ipsecEncryption": "string",
"ipsecIntegrity": "string",
"pfsGroup": "string",
"saDataSizeKilobytes": 0,
"saLifeTimeSeconds": 0,
},
},
"vpnClientProtocols": []string{
"string",
},
"vpnClientRevokedCertificates": []map[string]interface{}{
map[string]interface{}{
"id": "string",
"name": "string",
"thumbprint": "string",
},
},
"vpnClientRootCertificates": []map[string]interface{}{
map[string]interface{}{
"publicCertData": "string",
"id": "string",
"name": "string",
},
},
},
VpnGatewayGeneration: "string",
ActiveActive: false,
})
var virtualNetworkGatewayResource = new VirtualNetworkGateway("virtualNetworkGatewayResource", VirtualNetworkGatewayArgs.builder()
.resourceGroupName("string")
.ipConfigurations(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vpnType("string")
.id("string")
.enableDnsForwarding(false)
.enablePrivateIpAddress(false)
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.gatewayDefaultSite(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.gatewayType("string")
.enableBgp(false)
.customRoutes(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.bgpSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vNetExtendedLocationResourceId("string")
.virtualNetworkGatewayName("string")
.vpnClientConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vpnGatewayGeneration("string")
.activeActive(false)
.build());
virtual_network_gateway_resource = azure_native.network.VirtualNetworkGateway("virtualNetworkGatewayResource",
resource_group_name=string,
ip_configurations=[{
id: string,
name: string,
privateIPAllocationMethod: string,
publicIPAddress: {
id: string,
},
subnet: {
id: string,
},
}],
vpn_type=string,
id=string,
enable_dns_forwarding=False,
enable_private_ip_address=False,
extended_location={
name: string,
type: string,
},
gateway_default_site={
id: string,
},
gateway_type=string,
enable_bgp=False,
custom_routes={
addressPrefixes: [string],
},
bgp_settings={
asn: 0,
bgpPeeringAddress: string,
bgpPeeringAddresses: [{
customBgpIpAddresses: [string],
ipconfigurationId: string,
}],
peerWeight: 0,
},
location=string,
sku={
name: string,
tier: string,
},
tags={
string: string,
},
v_net_extended_location_resource_id=string,
virtual_network_gateway_name=string,
vpn_client_configuration={
aadAudience: string,
aadIssuer: string,
aadTenant: string,
radiusServerAddress: string,
radiusServerSecret: string,
radiusServers: [{
radiusServerAddress: string,
radiusServerScore: 0,
radiusServerSecret: string,
}],
vpnAuthenticationTypes: [string],
vpnClientAddressPool: {
addressPrefixes: [string],
},
vpnClientIpsecPolicies: [{
dhGroup: string,
ikeEncryption: string,
ikeIntegrity: string,
ipsecEncryption: string,
ipsecIntegrity: string,
pfsGroup: string,
saDataSizeKilobytes: 0,
saLifeTimeSeconds: 0,
}],
vpnClientProtocols: [string],
vpnClientRevokedCertificates: [{
id: string,
name: string,
thumbprint: string,
}],
vpnClientRootCertificates: [{
publicCertData: string,
id: string,
name: string,
}],
},
vpn_gateway_generation=string,
active_active=False)
const virtualNetworkGatewayResource = new azure_native.network.VirtualNetworkGateway("virtualNetworkGatewayResource", {
resourceGroupName: "string",
ipConfigurations: [{
id: "string",
name: "string",
privateIPAllocationMethod: "string",
publicIPAddress: {
id: "string",
},
subnet: {
id: "string",
},
}],
vpnType: "string",
id: "string",
enableDnsForwarding: false,
enablePrivateIpAddress: false,
extendedLocation: {
name: "string",
type: "string",
},
gatewayDefaultSite: {
id: "string",
},
gatewayType: "string",
enableBgp: false,
customRoutes: {
addressPrefixes: ["string"],
},
bgpSettings: {
asn: 0,
bgpPeeringAddress: "string",
bgpPeeringAddresses: [{
customBgpIpAddresses: ["string"],
ipconfigurationId: "string",
}],
peerWeight: 0,
},
location: "string",
sku: {
name: "string",
tier: "string",
},
tags: {
string: "string",
},
vNetExtendedLocationResourceId: "string",
virtualNetworkGatewayName: "string",
vpnClientConfiguration: {
aadAudience: "string",
aadIssuer: "string",
aadTenant: "string",
radiusServerAddress: "string",
radiusServerSecret: "string",
radiusServers: [{
radiusServerAddress: "string",
radiusServerScore: 0,
radiusServerSecret: "string",
}],
vpnAuthenticationTypes: ["string"],
vpnClientAddressPool: {
addressPrefixes: ["string"],
},
vpnClientIpsecPolicies: [{
dhGroup: "string",
ikeEncryption: "string",
ikeIntegrity: "string",
ipsecEncryption: "string",
ipsecIntegrity: "string",
pfsGroup: "string",
saDataSizeKilobytes: 0,
saLifeTimeSeconds: 0,
}],
vpnClientProtocols: ["string"],
vpnClientRevokedCertificates: [{
id: "string",
name: "string",
thumbprint: "string",
}],
vpnClientRootCertificates: [{
publicCertData: "string",
id: "string",
name: "string",
}],
},
vpnGatewayGeneration: "string",
activeActive: false,
});
type: azure-native:network:VirtualNetworkGateway
properties:
activeActive: false
bgpSettings:
asn: 0
bgpPeeringAddress: string
bgpPeeringAddresses:
- customBgpIpAddresses:
- string
ipconfigurationId: string
peerWeight: 0
customRoutes:
addressPrefixes:
- string
enableBgp: false
enableDnsForwarding: false
enablePrivateIpAddress: false
extendedLocation:
name: string
type: string
gatewayDefaultSite:
id: string
gatewayType: string
id: string
ipConfigurations:
- id: string
name: string
privateIPAllocationMethod: string
publicIPAddress:
id: string
subnet:
id: string
location: string
resourceGroupName: string
sku:
name: string
tier: string
tags:
string: string
vNetExtendedLocationResourceId: string
virtualNetworkGatewayName: string
vpnClientConfiguration:
aadAudience: string
aadIssuer: string
aadTenant: string
radiusServerAddress: string
radiusServerSecret: string
radiusServers:
- radiusServerAddress: string
radiusServerScore: 0
radiusServerSecret: string
vpnAuthenticationTypes:
- string
vpnClientAddressPool:
addressPrefixes:
- string
vpnClientIpsecPolicies:
- dhGroup: string
ikeEncryption: string
ikeIntegrity: string
ipsecEncryption: string
ipsecIntegrity: string
pfsGroup: string
saDataSizeKilobytes: 0
saLifeTimeSeconds: 0
vpnClientProtocols:
- string
vpnClientRevokedCertificates:
- id: string
name: string
thumbprint: string
vpnClientRootCertificates:
- id: string
name: string
publicCertData: string
vpnGatewayGeneration: string
vpnType: string
VirtualNetworkGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VirtualNetworkGateway resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Active
Active bool - ActiveActive flag.
- Bgp
Settings Pulumi.Azure Native. Network. Inputs. Bgp Settings - Virtual network gateway's BGP speaker settings.
- Custom
Routes Pulumi.Azure Native. Network. Inputs. Address Space - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- Enable
Bgp bool - Whether BGP is enabled for this virtual network gateway or not.
- Enable
Dns boolForwarding - Whether dns forwarding is enabled or not.
- Enable
Private boolIp Address - Whether private IP needs to be enabled on this gateway for connections or not.
- Extended
Location Pulumi.Azure Native. Network. Inputs. Extended Location - The extended location of type local virtual network gateway.
- Gateway
Default Pulumi.Site Azure Native. Network. Inputs. Sub Resource - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- Gateway
Type string | Pulumi.Azure Native. Network. Virtual Network Gateway Type - The type of this virtual network gateway.
- Id string
- Resource ID.
- Ip
Configurations List<Pulumi.Azure Native. Network. Inputs. Virtual Network Gateway IPConfiguration> - IP configurations for virtual network gateway.
- Location string
- Resource location.
- Sku
Pulumi.
Azure Native. Network. Inputs. Virtual Network Gateway Sku - The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- Dictionary<string, string>
- Resource tags.
- VNet
Extended stringLocation Resource Id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- Virtual
Network stringGateway Name - The name of the virtual network gateway.
- Vpn
Client Pulumi.Configuration Azure Native. Network. Inputs. Vpn Client Configuration - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- Vpn
Gateway string | Pulumi.Generation Azure Native. Network. Vpn Gateway Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- Vpn
Type string | Pulumi.Azure Native. Network. Vpn Type - The type of this virtual network gateway.
- Resource
Group stringName - The name of the resource group.
- Active
Active bool - ActiveActive flag.
- Bgp
Settings BgpSettings Args - Virtual network gateway's BGP speaker settings.
- Custom
Routes AddressSpace Args - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- Enable
Bgp bool - Whether BGP is enabled for this virtual network gateway or not.
- Enable
Dns boolForwarding - Whether dns forwarding is enabled or not.
- Enable
Private boolIp Address - Whether private IP needs to be enabled on this gateway for connections or not.
- Extended
Location ExtendedLocation Args - The extended location of type local virtual network gateway.
- Gateway
Default SubSite Resource Args - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- Gateway
Type string | VirtualNetwork Gateway Type Enum - The type of this virtual network gateway.
- Id string
- Resource ID.
- Ip
Configurations []VirtualNetwork Gateway IPConfiguration Args - IP configurations for virtual network gateway.
- Location string
- Resource location.
- Sku
Virtual
Network Gateway Sku Args - The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- map[string]string
- Resource tags.
- VNet
Extended stringLocation Resource Id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- Virtual
Network stringGateway Name - The name of the virtual network gateway.
- Vpn
Client VpnConfiguration Client Configuration Args - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- Vpn
Gateway string | VpnGeneration Gateway Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- Vpn
Type string | VpnType - The type of this virtual network gateway.
- resource
Group StringName - The name of the resource group.
- active
Active Boolean - ActiveActive flag.
- bgp
Settings BgpSettings - Virtual network gateway's BGP speaker settings.
- custom
Routes AddressSpace - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- enable
Bgp Boolean - Whether BGP is enabled for this virtual network gateway or not.
- enable
Dns BooleanForwarding - Whether dns forwarding is enabled or not.
- enable
Private BooleanIp Address - Whether private IP needs to be enabled on this gateway for connections or not.
- extended
Location ExtendedLocation - The extended location of type local virtual network gateway.
- gateway
Default SubSite Resource - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- gateway
Type String | VirtualNetwork Gateway Type - The type of this virtual network gateway.
- id String
- Resource ID.
- ip
Configurations List<VirtualNetwork Gateway IPConfiguration> - IP configurations for virtual network gateway.
- location String
- Resource location.
- sku
Virtual
Network Gateway Sku - The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- Map<String,String>
- Resource tags.
- v
Net StringExtended Location Resource Id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- virtual
Network StringGateway Name - The name of the virtual network gateway.
- vpn
Client VpnConfiguration Client Configuration - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- vpn
Gateway String | VpnGeneration Gateway Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- vpn
Type String | VpnType - The type of this virtual network gateway.
- resource
Group stringName - The name of the resource group.
- active
Active boolean - ActiveActive flag.
- bgp
Settings BgpSettings - Virtual network gateway's BGP speaker settings.
- custom
Routes AddressSpace - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- enable
Bgp boolean - Whether BGP is enabled for this virtual network gateway or not.
- enable
Dns booleanForwarding - Whether dns forwarding is enabled or not.
- enable
Private booleanIp Address - Whether private IP needs to be enabled on this gateway for connections or not.
- extended
Location ExtendedLocation - The extended location of type local virtual network gateway.
- gateway
Default SubSite Resource - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- gateway
Type string | VirtualNetwork Gateway Type - The type of this virtual network gateway.
- id string
- Resource ID.
- ip
Configurations VirtualNetwork Gateway IPConfiguration[] - IP configurations for virtual network gateway.
- location string
- Resource location.
- sku
Virtual
Network Gateway Sku - The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- {[key: string]: string}
- Resource tags.
- v
Net stringExtended Location Resource Id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- virtual
Network stringGateway Name - The name of the virtual network gateway.
- vpn
Client VpnConfiguration Client Configuration - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- vpn
Gateway string | VpnGeneration Gateway Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- vpn
Type string | VpnType - The type of this virtual network gateway.
- resource_
group_ strname - The name of the resource group.
- active_
active bool - ActiveActive flag.
- bgp_
settings BgpSettings Args - Virtual network gateway's BGP speaker settings.
- custom_
routes AddressSpace Args - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- enable_
bgp bool - Whether BGP is enabled for this virtual network gateway or not.
- enable_
dns_ boolforwarding - Whether dns forwarding is enabled or not.
- enable_
private_ boolip_ address - Whether private IP needs to be enabled on this gateway for connections or not.
- extended_
location ExtendedLocation Args - The extended location of type local virtual network gateway.
- gateway_
default_ Subsite Resource Args - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- gateway_
type str | VirtualNetwork Gateway Type - The type of this virtual network gateway.
- id str
- Resource ID.
- ip_
configurations Sequence[VirtualNetwork Gateway IPConfiguration Args] - IP configurations for virtual network gateway.
- location str
- Resource location.
- sku
Virtual
Network Gateway Sku Args - The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- Mapping[str, str]
- Resource tags.
- v_
net_ strextended_ location_ resource_ id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- virtual_
network_ strgateway_ name - The name of the virtual network gateway.
- vpn_
client_ Vpnconfiguration Client Configuration Args - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- vpn_
gateway_ str | Vpngeneration Gateway Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- vpn_
type str | VpnType - The type of this virtual network gateway.
- resource
Group StringName - The name of the resource group.
- active
Active Boolean - ActiveActive flag.
- bgp
Settings Property Map - Virtual network gateway's BGP speaker settings.
- custom
Routes Property Map - The reference to the address space resource which represents the custom routes address space specified by the customer for virtual network gateway and VpnClient.
- enable
Bgp Boolean - Whether BGP is enabled for this virtual network gateway or not.
- enable
Dns BooleanForwarding - Whether dns forwarding is enabled or not.
- enable
Private BooleanIp Address - Whether private IP needs to be enabled on this gateway for connections or not.
- extended
Location Property Map - The extended location of type local virtual network gateway.
- gateway
Default Property MapSite - The reference to the LocalNetworkGateway resource which represents local network site having default routes. Assign Null value in case of removing existing default site setting.
- gateway
Type String | "Vpn" | "ExpressRoute" | "Local Gateway" - The type of this virtual network gateway.
- id String
- Resource ID.
- ip
Configurations List<Property Map> - IP configurations for virtual network gateway.
- location String
- Resource location.
- sku Property Map
- The reference to the VirtualNetworkGatewaySku resource which represents the SKU selected for Virtual network gateway.
- Map<String>
- Resource tags.
- v
Net StringExtended Location Resource Id - Customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet.
- virtual
Network StringGateway Name - The name of the virtual network gateway.
- vpn
Client Property MapConfiguration - The reference to the VpnClientConfiguration resource which represents the P2S VpnClient configurations.
- vpn
Gateway String | "None" | "Generation1" | "Generation2"Generation - The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
- vpn
Type String | "PolicyBased" | "Route Based" - The type of this virtual network gateway.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualNetworkGateway resource produces the following output properties:
- 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.
- Inbound
Dns stringForwarding Endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the virtual network gateway resource.
- Resource
Guid string - The resource GUID property of the virtual network gateway resource.
- Type string
- Resource type.
- 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.
- Inbound
Dns stringForwarding Endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- Name string
- Resource name.
- Provisioning
State string - The provisioning state of the virtual network gateway resource.
- Resource
Guid string - The resource GUID property of the virtual network gateway resource.
- Type string
- Resource type.
- 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.
- inbound
Dns StringForwarding Endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the virtual network gateway resource.
- resource
Guid String - The resource GUID property of the virtual network gateway resource.
- type String
- Resource type.
- 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.
- inbound
Dns stringForwarding Endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- name string
- Resource name.
- provisioning
State string - The provisioning state of the virtual network gateway resource.
- resource
Guid string - The resource GUID property of the virtual network gateway resource.
- type string
- Resource type.
- 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.
- inbound_
dns_ strforwarding_ endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- name str
- Resource name.
- provisioning_
state str - The provisioning state of the virtual network gateway resource.
- resource_
guid str - The resource GUID property of the virtual network gateway resource.
- type str
- Resource type.
- 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.
- inbound
Dns StringForwarding Endpoint - The IP address allocated by the gateway to which dns requests can be sent.
- name String
- Resource name.
- provisioning
State String - The provisioning state of the virtual network gateway resource.
- resource
Guid String - The resource GUID property of the virtual network gateway resource.
- type String
- Resource type.
Supporting Types
AddressSpace, AddressSpaceArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes string[] - A list of address blocks reserved for this virtual network in CIDR notation.
- address_
prefixes Sequence[str] - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
AddressSpaceResponse, AddressSpaceResponseArgs
- Address
Prefixes List<string> - A list of address blocks reserved for this virtual network in CIDR notation.
- Address
Prefixes []string - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes string[] - A list of address blocks reserved for this virtual network in CIDR notation.
- address_
prefixes Sequence[str] - A list of address blocks reserved for this virtual network in CIDR notation.
- address
Prefixes List<String> - A list of address blocks reserved for this virtual network in CIDR notation.
BgpSettings, BgpSettingsArgs
- Asn double
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration Bgp Peering Address> - 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 float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering []IPConfigurationAddresses Bgp Peering Address - 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 Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<IPConfigurationAddresses Bgp Peering Address> - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Integer - The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering IPConfigurationAddresses Bgp Peering Address[] - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight number - The weight added to routes learned from this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_
peering_ straddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp_
peering_ Sequence[IPConfigurationaddresses Bgp Peering Address] - 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<Property Map>Addresses - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Number - The weight added to routes learned from this BGP speaker.
BgpSettingsResponse, BgpSettingsResponseArgs
- Asn double
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering List<Pulumi.Addresses Azure Native. Network. Inputs. IPConfiguration Bgp Peering Address Response> - 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 float64
- The BGP speaker's ASN.
- Bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- Bgp
Peering []IPConfigurationAddresses Bgp Peering Address Response - 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 Double
- The BGP speaker's ASN.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<IPConfigurationAddresses Bgp Peering Address Response> - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight Integer - The weight added to routes learned from this BGP speaker.
- asn number
- The BGP speaker's ASN.
- bgp
Peering stringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering IPConfigurationAddresses Bgp Peering Address Response[] - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight number - The weight added to routes learned from this BGP speaker.
- asn float
- The BGP speaker's ASN.
- bgp_
peering_ straddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp_
peering_ Sequence[IPConfigurationaddresses Bgp Peering Address Response] - 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.
- bgp
Peering StringAddress - The BGP peering address and BGP identifier of this BGP speaker.
- bgp
Peering List<Property Map>Addresses - BGP peering address with IP configuration ID for virtual network gateway.
- peer
Weight 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
- Dh
Group None - None
- Dh
Group DHGroup1 - DHGroup1
- Dh
Group DHGroup2 - DHGroup2
- Dh
Group DHGroup14 - DHGroup14
- Dh
Group DHGroup2048 - DHGroup2048
- Dh
Group ECP256 - ECP256
- Dh
Group ECP384 - ECP384
- Dh
Group DHGroup24 - 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
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Network. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Edge
Zone" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Edge
Zone - EdgeZone
- Extended
Location Types Edge Zone - EdgeZone
- Edge
Zone - EdgeZone
- Edge
Zone - EdgeZone
- EDGE_ZONE
- EdgeZone
- "Edge
Zone" - EdgeZone
IPAllocationMethod, IPAllocationMethodArgs
- Static
- Static
- Dynamic
- Dynamic
- IPAllocation
Method Static - Static
- IPAllocation
Method Dynamic - Dynamic
- Static
- Static
- Dynamic
- Dynamic
- Static
- Static
- Dynamic
- Dynamic
- STATIC
- Static
- DYNAMIC
- Dynamic
- "Static"
- Static
- "Dynamic"
- Dynamic
IPConfigurationBgpPeeringAddress, IPConfigurationBgpPeeringAddressArgs
- Custom
Bgp List<string>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- Custom
Bgp []stringIp Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
- custom
Bgp string[]Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- custom_
bgp_ Sequence[str]ip_ addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration_
id str - The ID of IP configuration which belongs to gateway.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
IPConfigurationBgpPeeringAddressResponse, IPConfigurationBgpPeeringAddressResponseArgs
- Default
Bgp List<string>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- Tunnel
Ip List<string>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- Custom
Bgp List<string>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- Default
Bgp []stringIp Addresses - The list of default BGP peering addresses which belong to IP configuration.
- Tunnel
Ip []stringAddresses - The list of tunnel public IP addresses which belong to IP configuration.
- Custom
Bgp []stringIp Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- Ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- default
Bgp List<String>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip List<String>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id String - The ID of IP configuration which belongs to gateway.
- default
Bgp string[]Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip string[]Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp string[]Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id string - The ID of IP configuration which belongs to gateway.
- default_
bgp_ Sequence[str]ip_ addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel_
ip_ Sequence[str]addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom_
bgp_ Sequence[str]ip_ addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration_
id str - The ID of IP configuration which belongs to gateway.
- default
Bgp List<String>Ip Addresses - The list of default BGP peering addresses which belong to IP configuration.
- tunnel
Ip List<String>Addresses - The list of tunnel public IP addresses which belong to IP configuration.
- custom
Bgp List<String>Ip Addresses - The list of custom BGP peering addresses which belong to IP configuration.
- ipconfiguration
Id 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
- Ike
Encryption DES - DES
- Ike
Encryption DES3 - DES3
- Ike
Encryption AES128 - AES128
- Ike
Encryption AES192 - AES192
- Ike
Encryption AES256 - AES256
- Ike
Encryption GCMAES256 - GCMAES256
- Ike
Encryption 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
- "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
- Ike
Integrity MD5 - MD5
- Ike
Integrity SHA1 - SHA1
- Ike
Integrity SHA256 - SHA256
- Ike
Integrity SHA384 - SHA384
- Ike
Integrity GCMAES256 - GCMAES256
- Ike
Integrity 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
- "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
- Ipsec
Encryption None - None
- Ipsec
Encryption DES - DES
- Ipsec
Encryption DES3 - DES3
- Ipsec
Encryption AES128 - AES128
- Ipsec
Encryption AES192 - AES192
- Ipsec
Encryption AES256 - AES256
- Ipsec
Encryption GCMAES128 - GCMAES128
- Ipsec
Encryption GCMAES192 - GCMAES192
- Ipsec
Encryption 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
- "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
- Ipsec
Integrity MD5 - MD5
- Ipsec
Integrity SHA1 - SHA1
- Ipsec
Integrity SHA256 - SHA256
- Ipsec
Integrity GCMAES128 - GCMAES128
- Ipsec
Integrity GCMAES192 - GCMAES192
- Ipsec
Integrity 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
- "MD5"
- MD5
- "SHA1"
- SHA1
- "SHA256"
- SHA256
- "GCMAES128"
- GCMAES128
- "GCMAES192"
- GCMAES192
- "GCMAES256"
- GCMAES256
IpsecPolicy, IpsecPolicyArgs
- Dh
Group string | Pulumi.Azure Native. Network. Dh Group - The DH Group used in IKE Phase 1 for initial SA.
- Ike
Encryption string | Pulumi.Azure Native. Network. Ike Encryption - The IKE encryption algorithm (IKE phase 2).
- Ike
Integrity string | Pulumi.Azure Native. Network. Ike Integrity - The IKE integrity algorithm (IKE phase 2).
- Ipsec
Encryption string | Pulumi.Azure Native. Network. Ipsec Encryption - The IPSec encryption algorithm (IKE phase 1).
- Ipsec
Integrity string | Pulumi.Azure Native. Network. Ipsec Integrity - The IPSec integrity algorithm (IKE phase 1).
- Pfs
Group string | Pulumi.Azure Native. Network. Pfs Group - The Pfs Group used in IKE Phase 2 for new child SA.
- Sa
Data intSize Kilobytes - 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 intTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- Dh
Group string | DhGroup - The DH Group used in IKE Phase 1 for initial SA.
- Ike
Encryption string | IkeEncryption - The IKE encryption algorithm (IKE phase 2).
- Ike
Integrity string | IkeIntegrity - The IKE integrity algorithm (IKE phase 2).
- Ipsec
Encryption string | IpsecEncryption - The IPSec encryption algorithm (IKE phase 1).
- Ipsec
Integrity string | IpsecIntegrity - The IPSec integrity algorithm (IKE phase 1).
- Pfs
Group string | PfsGroup - The Pfs Group used in IKE Phase 2 for new child SA.
- Sa
Data intSize Kilobytes - 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 intTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group String | DhGroup - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption String | IkeEncryption - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity String | IkeIntegrity - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption String | IpsecEncryption - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity String | IpsecIntegrity - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group String | PfsGroup - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data IntegerSize Kilobytes - 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 IntegerTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group string | DhGroup - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption string | IkeEncryption - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity string | IkeIntegrity - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption string | IpsecEncryption - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity string | IpsecIntegrity - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group string | PfsGroup - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data numberSize Kilobytes - 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 numberTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh_
group str | DhGroup - The DH Group used in IKE Phase 1 for initial SA.
- ike_
encryption str | IkeEncryption - The IKE encryption algorithm (IKE phase 2).
- ike_
integrity str | IkeIntegrity - The IKE integrity algorithm (IKE phase 2).
- ipsec_
encryption str | IpsecEncryption - The IPSec encryption algorithm (IKE phase 1).
- ipsec_
integrity str | IpsecIntegrity - The IPSec integrity algorithm (IKE phase 1).
- pfs_
group str | PfsGroup - The Pfs Group used in IKE Phase 2 for new child SA.
- sa_
data_ intsize_ kilobytes - 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_ inttime_ seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group String | "None" | "DHGroup1" | "DHGroup2" | "DHGroup14" | "DHGroup2048" | "ECP256" | "ECP384" | "DHGroup24" - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption String | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES256" | "GCMAES128" - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity String | "MD5" | "SHA1" | "SHA256" | "SHA384" | "GCMAES256" | "GCMAES128" - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption String | "None" | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES128" | "GCMAES192" | "GCMAES256" - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity String | "MD5" | "SHA1" | "SHA256" | "GCMAES128" | "GCMAES192" | "GCMAES256" - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group String | "None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM" - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data NumberSize Kilobytes - 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 NumberTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
IpsecPolicyResponse, IpsecPolicyResponseArgs
- Dh
Group string - The DH Group used in IKE Phase 1 for initial SA.
- Ike
Encryption string - The IKE encryption algorithm (IKE phase 2).
- Ike
Integrity string - The IKE integrity algorithm (IKE phase 2).
- Ipsec
Encryption string - The IPSec encryption algorithm (IKE phase 1).
- Ipsec
Integrity string - The IPSec integrity algorithm (IKE phase 1).
- Pfs
Group string - The Pfs Group used in IKE Phase 2 for new child SA.
- Sa
Data intSize Kilobytes - 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 intTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- Dh
Group string - The DH Group used in IKE Phase 1 for initial SA.
- Ike
Encryption string - The IKE encryption algorithm (IKE phase 2).
- Ike
Integrity string - The IKE integrity algorithm (IKE phase 2).
- Ipsec
Encryption string - The IPSec encryption algorithm (IKE phase 1).
- Ipsec
Integrity string - The IPSec integrity algorithm (IKE phase 1).
- Pfs
Group string - The Pfs Group used in IKE Phase 2 for new child SA.
- Sa
Data intSize Kilobytes - 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 intTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group String - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption String - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity String - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption String - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity String - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group String - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data IntegerSize Kilobytes - 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 IntegerTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group string - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption string - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity string - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption string - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity string - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group string - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data numberSize Kilobytes - 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 numberTime Seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh_
group str - The DH Group used in IKE Phase 1 for initial SA.
- ike_
encryption str - The IKE encryption algorithm (IKE phase 2).
- ike_
integrity str - The IKE integrity algorithm (IKE phase 2).
- ipsec_
encryption str - The IPSec encryption algorithm (IKE phase 1).
- ipsec_
integrity str - The IPSec integrity algorithm (IKE phase 1).
- pfs_
group str - The Pfs Group used in IKE Phase 2 for new child SA.
- sa_
data_ intsize_ kilobytes - 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_ inttime_ seconds - The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dh
Group String - The DH Group used in IKE Phase 1 for initial SA.
- ike
Encryption String - The IKE encryption algorithm (IKE phase 2).
- ike
Integrity String - The IKE integrity algorithm (IKE phase 2).
- ipsec
Encryption String - The IPSec encryption algorithm (IKE phase 1).
- ipsec
Integrity String - The IPSec integrity algorithm (IKE phase 1).
- pfs
Group String - The Pfs Group used in IKE Phase 2 for new child SA.
- sa
Data NumberSize Kilobytes - 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 NumberTime Seconds - 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
- Pfs
Group None - None
- Pfs
Group PFS1 - PFS1
- Pfs
Group PFS2 - PFS2
- Pfs
Group PFS2048 - PFS2048
- Pfs
Group ECP256 - ECP256
- Pfs
Group ECP384 - ECP384
- Pfs
Group PFS24 - PFS24
- Pfs
Group PFS14 - PFS14
- Pfs
Group 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
- "None"
- None
- "PFS1"
- PFS1
- "PFS2"
- PFS2
- "PFS2048"
- PFS2048
- "ECP256"
- ECP256
- "ECP384"
- ECP384
- "PFS24"
- PFS24
- "PFS14"
- PFS14
- "PFSMM"
- PFSMM
RadiusServer, RadiusServerArgs
- Radius
Server stringAddress - The address of this radius server.
- Radius
Server doubleScore - The initial score assigned to this radius server.
- Radius
Server stringSecret - The secret used for this radius server.
- Radius
Server stringAddress - The address of this radius server.
- Radius
Server float64Score - The initial score assigned to this radius server.
- Radius
Server stringSecret - The secret used for this radius server.
- radius
Server StringAddress - The address of this radius server.
- radius
Server DoubleScore - The initial score assigned to this radius server.
- radius
Server StringSecret - The secret used for this radius server.
- radius
Server stringAddress - The address of this radius server.
- radius
Server numberScore - The initial score assigned to this radius server.
- radius
Server stringSecret - The secret used for this radius server.
- radius_
server_ straddress - The address of this radius server.
- radius_
server_ floatscore - The initial score assigned to this radius server.
- radius_
server_ strsecret - The secret used for this radius server.
- radius
Server StringAddress - The address of this radius server.
- radius
Server NumberScore - The initial score assigned to this radius server.
- radius
Server StringSecret - The secret used for this radius server.
RadiusServerResponse, RadiusServerResponseArgs
- Radius
Server stringAddress - The address of this radius server.
- Radius
Server doubleScore - The initial score assigned to this radius server.
- Radius
Server stringSecret - The secret used for this radius server.
- Radius
Server stringAddress - The address of this radius server.
- Radius
Server float64Score - The initial score assigned to this radius server.
- Radius
Server stringSecret - The secret used for this radius server.
- radius
Server StringAddress - The address of this radius server.
- radius
Server DoubleScore - The initial score assigned to this radius server.
- radius
Server StringSecret - The secret used for this radius server.
- radius
Server stringAddress - The address of this radius server.
- radius
Server numberScore - The initial score assigned to this radius server.
- radius
Server stringSecret - The secret used for this radius server.
- radius_
server_ straddress - The address of this radius server.
- radius_
server_ floatscore - The initial score assigned to this radius server.
- radius_
server_ strsecret - The secret used for this radius server.
- radius
Server StringAddress - The address of this radius server.
- radius
Server NumberScore - The initial score assigned to this radius server.
- radius
Server StringSecret - The secret used for this radius server.
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.
VirtualNetworkGatewayIPConfiguration, VirtualNetworkGatewayIPConfigurationArgs
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Private
IPAllocation string | Pulumi.Method Azure Native. Network. IPAllocation Method - The private IP address allocation method.
- Public
IPAddress Pulumi.Azure Native. Network. Inputs. Sub Resource - The reference to the public IP resource.
- Subnet
Pulumi.
Azure Native. Network. Inputs. Sub Resource - The reference to the subnet resource.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Private
IPAllocation string | IPAllocationMethod Method - The private IP address allocation method.
- Public
IPAddress SubResource - The reference to the public IP resource.
- Subnet
Sub
Resource - The reference to the subnet resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation String | IPAllocationMethod Method - The private IP address allocation method.
- public
IPAddress SubResource - The reference to the public IP resource.
- subnet
Sub
Resource - The reference to the subnet resource.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation string | IPAllocationMethod Method - The private IP address allocation method.
- public
IPAddress SubResource - The reference to the public IP resource.
- subnet
Sub
Resource - The reference to the subnet resource.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private_
ip_ str | IPAllocationallocation_ method Method - The private IP address allocation method.
- public_
ip_ Subaddress Resource - The reference to the public IP resource.
- subnet
Sub
Resource - The reference to the subnet resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation String | "Static" | "Dynamic"Method - The private IP address allocation method.
- public
IPAddress Property Map - The reference to the public IP resource.
- subnet Property Map
- The reference to the subnet resource.
VirtualNetworkGatewayIPConfigurationResponse, VirtualNetworkGatewayIPConfigurationResponseArgs
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Private
IPAddress string - Private IP Address for this gateway.
- Provisioning
State string - The provisioning state of the virtual network gateway IP configuration resource.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Private
IPAllocation stringMethod - The private IP address allocation method.
- Public
IPAddress Pulumi.Azure Native. Network. Inputs. Sub Resource Response - The reference to the public IP resource.
- Subnet
Pulumi.
Azure Native. Network. Inputs. Sub Resource Response - The reference to the subnet resource.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Private
IPAddress string - Private IP Address for this gateway.
- Provisioning
State string - The provisioning state of the virtual network gateway IP configuration resource.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Private
IPAllocation stringMethod - The private IP address allocation method.
- Public
IPAddress SubResource Response - The reference to the public IP resource.
- Subnet
Sub
Resource Response - The reference to the subnet resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- private
IPAddress String - Private IP Address for this gateway.
- provisioning
State String - The provisioning state of the virtual network gateway IP configuration resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation StringMethod - The private IP address allocation method.
- public
IPAddress SubResource Response - The reference to the public IP resource.
- subnet
Sub
Resource Response - The reference to the subnet resource.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- private
IPAddress string - Private IP Address for this gateway.
- provisioning
State string - The provisioning state of the virtual network gateway IP configuration resource.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation stringMethod - The private IP address allocation method.
- public
IPAddress SubResource Response - The reference to the public IP resource.
- subnet
Sub
Resource Response - The reference to the subnet resource.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- private_
ip_ straddress - Private IP Address for this gateway.
- provisioning_
state str - The provisioning state of the virtual network gateway IP configuration resource.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private_
ip_ strallocation_ method - The private IP address allocation method.
- public_
ip_ Subaddress Resource Response - The reference to the public IP resource.
- subnet
Sub
Resource Response - The reference to the subnet resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- private
IPAddress String - Private IP Address for this gateway.
- provisioning
State String - The provisioning state of the virtual network gateway IP configuration resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- private
IPAllocation StringMethod - The private IP address allocation method.
- public
IPAddress Property Map - The reference to the public IP resource.
- subnet Property Map
- The reference to the subnet resource.
VirtualNetworkGatewaySku, VirtualNetworkGatewaySkuArgs
- Name
string | Pulumi.
Azure Native. Network. Virtual Network Gateway Sku Name - Gateway SKU name.
- Tier
string | Pulumi.
Azure Native. Network. Virtual Network Gateway Sku Tier - Gateway SKU tier.
- Name
string | Virtual
Network Gateway Sku Name - Gateway SKU name.
- Tier
string | Virtual
Network Gateway Sku Tier - Gateway SKU tier.
- name
String | Virtual
Network Gateway Sku Name - Gateway SKU name.
- tier
String | Virtual
Network Gateway Sku Tier - Gateway SKU tier.
- name
string | Virtual
Network Gateway Sku Name - Gateway SKU name.
- tier
string | Virtual
Network Gateway Sku Tier - Gateway SKU tier.
- name
str | Virtual
Network Gateway Sku Name - Gateway SKU name.
- tier
str | Virtual
Network Gateway Sku Tier - Gateway SKU tier.
- name
String | "Basic" | "High
Performance" | "Standard" | "Ultra Performance" | "Vpn Gw1" | "Vpn Gw2" | "Vpn Gw3" | "Vpn Gw4" | "Vpn Gw5" | "Vpn Gw1AZ" | "Vpn Gw2AZ" | "Vpn Gw3AZ" | "Vpn Gw4AZ" | "Vpn Gw5AZ" | "Er Gw1AZ" | "Er Gw2AZ" | "Er Gw3AZ" - Gateway SKU name.
- tier
String | "Basic" | "High
Performance" | "Standard" | "Ultra Performance" | "Vpn Gw1" | "Vpn Gw2" | "Vpn Gw3" | "Vpn Gw4" | "Vpn Gw5" | "Vpn Gw1AZ" | "Vpn Gw2AZ" | "Vpn Gw3AZ" | "Vpn Gw4AZ" | "Vpn Gw5AZ" | "Er Gw1AZ" | "Er Gw2AZ" | "Er Gw3AZ" - Gateway SKU tier.
VirtualNetworkGatewaySkuName, VirtualNetworkGatewaySkuNameArgs
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- Virtual
Network Gateway Sku Name Basic - Basic
- Virtual
Network Gateway Sku Name High Performance - HighPerformance
- Virtual
Network Gateway Sku Name Standard - Standard
- Virtual
Network Gateway Sku Name Ultra Performance - UltraPerformance
- Virtual
Network Gateway Sku Name Vpn Gw1 - VpnGw1
- Virtual
Network Gateway Sku Name Vpn Gw2 - VpnGw2
- Virtual
Network Gateway Sku Name Vpn Gw3 - VpnGw3
- Virtual
Network Gateway Sku Name Vpn Gw4 - VpnGw4
- Virtual
Network Gateway Sku Name Vpn Gw5 - VpnGw5
- Virtual
Network Gateway Sku Name Vpn Gw1AZ - VpnGw1AZ
- Virtual
Network Gateway Sku Name Vpn Gw2AZ - VpnGw2AZ
- Virtual
Network Gateway Sku Name Vpn Gw3AZ - VpnGw3AZ
- Virtual
Network Gateway Sku Name Vpn Gw4AZ - VpnGw4AZ
- Virtual
Network Gateway Sku Name Vpn Gw5AZ - VpnGw5AZ
- Virtual
Network Gateway Sku Name Er Gw1AZ - ErGw1AZ
- Virtual
Network Gateway Sku Name Er Gw2AZ - ErGw2AZ
- Virtual
Network Gateway Sku Name Er Gw3AZ - ErGw3AZ
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- BASIC
- Basic
- HIGH_PERFORMANCE
- HighPerformance
- STANDARD
- Standard
- ULTRA_PERFORMANCE
- UltraPerformance
- VPN_GW1
- VpnGw1
- VPN_GW2
- VpnGw2
- VPN_GW3
- VpnGw3
- VPN_GW4
- VpnGw4
- VPN_GW5
- VpnGw5
- VPN_GW1_AZ
- VpnGw1AZ
- VPN_GW2_AZ
- VpnGw2AZ
- VPN_GW3_AZ
- VpnGw3AZ
- VPN_GW4_AZ
- VpnGw4AZ
- VPN_GW5_AZ
- VpnGw5AZ
- ER_GW1_AZ
- ErGw1AZ
- ER_GW2_AZ
- ErGw2AZ
- ER_GW3_AZ
- ErGw3AZ
- "Basic"
- Basic
- "High
Performance" - HighPerformance
- "Standard"
- Standard
- "Ultra
Performance" - UltraPerformance
- "Vpn
Gw1" - VpnGw1
- "Vpn
Gw2" - VpnGw2
- "Vpn
Gw3" - VpnGw3
- "Vpn
Gw4" - VpnGw4
- "Vpn
Gw5" - VpnGw5
- "Vpn
Gw1AZ" - VpnGw1AZ
- "Vpn
Gw2AZ" - VpnGw2AZ
- "Vpn
Gw3AZ" - VpnGw3AZ
- "Vpn
Gw4AZ" - VpnGw4AZ
- "Vpn
Gw5AZ" - VpnGw5AZ
- "Er
Gw1AZ" - ErGw1AZ
- "Er
Gw2AZ" - ErGw2AZ
- "Er
Gw3AZ" - ErGw3AZ
VirtualNetworkGatewaySkuResponse, VirtualNetworkGatewaySkuResponseArgs
VirtualNetworkGatewaySkuTier, VirtualNetworkGatewaySkuTierArgs
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- Virtual
Network Gateway Sku Tier Basic - Basic
- Virtual
Network Gateway Sku Tier High Performance - HighPerformance
- Virtual
Network Gateway Sku Tier Standard - Standard
- Virtual
Network Gateway Sku Tier Ultra Performance - UltraPerformance
- Virtual
Network Gateway Sku Tier Vpn Gw1 - VpnGw1
- Virtual
Network Gateway Sku Tier Vpn Gw2 - VpnGw2
- Virtual
Network Gateway Sku Tier Vpn Gw3 - VpnGw3
- Virtual
Network Gateway Sku Tier Vpn Gw4 - VpnGw4
- Virtual
Network Gateway Sku Tier Vpn Gw5 - VpnGw5
- Virtual
Network Gateway Sku Tier Vpn Gw1AZ - VpnGw1AZ
- Virtual
Network Gateway Sku Tier Vpn Gw2AZ - VpnGw2AZ
- Virtual
Network Gateway Sku Tier Vpn Gw3AZ - VpnGw3AZ
- Virtual
Network Gateway Sku Tier Vpn Gw4AZ - VpnGw4AZ
- Virtual
Network Gateway Sku Tier Vpn Gw5AZ - VpnGw5AZ
- Virtual
Network Gateway Sku Tier Er Gw1AZ - ErGw1AZ
- Virtual
Network Gateway Sku Tier Er Gw2AZ - ErGw2AZ
- Virtual
Network Gateway Sku Tier Er Gw3AZ - ErGw3AZ
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- Basic
- Basic
- High
Performance - HighPerformance
- Standard
- Standard
- Ultra
Performance - UltraPerformance
- Vpn
Gw1 - VpnGw1
- Vpn
Gw2 - VpnGw2
- Vpn
Gw3 - VpnGw3
- Vpn
Gw4 - VpnGw4
- Vpn
Gw5 - VpnGw5
- Vpn
Gw1AZ - VpnGw1AZ
- Vpn
Gw2AZ - VpnGw2AZ
- Vpn
Gw3AZ - VpnGw3AZ
- Vpn
Gw4AZ - VpnGw4AZ
- Vpn
Gw5AZ - VpnGw5AZ
- Er
Gw1AZ - ErGw1AZ
- Er
Gw2AZ - ErGw2AZ
- Er
Gw3AZ - ErGw3AZ
- BASIC
- Basic
- HIGH_PERFORMANCE
- HighPerformance
- STANDARD
- Standard
- ULTRA_PERFORMANCE
- UltraPerformance
- VPN_GW1
- VpnGw1
- VPN_GW2
- VpnGw2
- VPN_GW3
- VpnGw3
- VPN_GW4
- VpnGw4
- VPN_GW5
- VpnGw5
- VPN_GW1_AZ
- VpnGw1AZ
- VPN_GW2_AZ
- VpnGw2AZ
- VPN_GW3_AZ
- VpnGw3AZ
- VPN_GW4_AZ
- VpnGw4AZ
- VPN_GW5_AZ
- VpnGw5AZ
- ER_GW1_AZ
- ErGw1AZ
- ER_GW2_AZ
- ErGw2AZ
- ER_GW3_AZ
- ErGw3AZ
- "Basic"
- Basic
- "High
Performance" - HighPerformance
- "Standard"
- Standard
- "Ultra
Performance" - UltraPerformance
- "Vpn
Gw1" - VpnGw1
- "Vpn
Gw2" - VpnGw2
- "Vpn
Gw3" - VpnGw3
- "Vpn
Gw4" - VpnGw4
- "Vpn
Gw5" - VpnGw5
- "Vpn
Gw1AZ" - VpnGw1AZ
- "Vpn
Gw2AZ" - VpnGw2AZ
- "Vpn
Gw3AZ" - VpnGw3AZ
- "Vpn
Gw4AZ" - VpnGw4AZ
- "Vpn
Gw5AZ" - VpnGw5AZ
- "Er
Gw1AZ" - ErGw1AZ
- "Er
Gw2AZ" - ErGw2AZ
- "Er
Gw3AZ" - ErGw3AZ
VirtualNetworkGatewayType, VirtualNetworkGatewayTypeArgs
- Vpn
- Vpn
- Express
Route - ExpressRoute
- Local
Gateway - LocalGateway
- Virtual
Network Gateway Type Vpn - Vpn
- Virtual
Network Gateway Type Express Route - ExpressRoute
- Virtual
Network Gateway Type Local Gateway - LocalGateway
- Vpn
- Vpn
- Express
Route - ExpressRoute
- Local
Gateway - LocalGateway
- Vpn
- Vpn
- Express
Route - ExpressRoute
- Local
Gateway - LocalGateway
- VPN
- Vpn
- EXPRESS_ROUTE
- ExpressRoute
- LOCAL_GATEWAY
- LocalGateway
- "Vpn"
- Vpn
- "Express
Route" - ExpressRoute
- "Local
Gateway" - LocalGateway
VpnAuthenticationType, VpnAuthenticationTypeArgs
- Certificate
- Certificate
- Radius
- Radius
- AAD
- AAD
- Vpn
Authentication Type Certificate - Certificate
- Vpn
Authentication Type Radius - Radius
- Vpn
Authentication Type AAD - AAD
- Certificate
- Certificate
- Radius
- Radius
- AAD
- AAD
- Certificate
- Certificate
- Radius
- Radius
- AAD
- AAD
- CERTIFICATE
- Certificate
- RADIUS
- Radius
- AAD
- AAD
- "Certificate"
- Certificate
- "Radius"
- Radius
- "AAD"
- AAD
VpnClientConfiguration, VpnClientConfigurationArgs
- Aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Servers List<Pulumi.Azure Native. Network. Inputs. Radius Server> - The radiusServers property for multiple radius server configuration.
- Vpn
Authentication List<Union<string, Pulumi.Types Azure Native. Network. Vpn Authentication Type>> - VPN authentication types for the virtual network gateway..
- Vpn
Client Pulumi.Address Pool Azure Native. Network. Inputs. Address Space - The reference to the address space resource which represents Address space for P2S VpnClient.
- Vpn
Client List<Pulumi.Ipsec Policies Azure Native. Network. Inputs. Ipsec Policy> - VpnClientIpsecPolicies for virtual network gateway P2S client.
- Vpn
Client List<Union<string, Pulumi.Protocols Azure Native. Network. Vpn Client Protocol>> - VpnClientProtocols for Virtual network gateway.
- Vpn
Client List<Pulumi.Revoked Certificates Azure Native. Network. Inputs. Vpn Client Revoked Certificate> - VpnClientRevokedCertificate for Virtual network gateway.
- Vpn
Client List<Pulumi.Root Certificates Azure Native. Network. Inputs. Vpn Client Root Certificate> - VpnClientRootCertificate for virtual network gateway.
- Aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Servers []RadiusServer - The radiusServers property for multiple radius server configuration.
- Vpn
Authentication []stringTypes - VPN authentication types for the virtual network gateway..
- Vpn
Client AddressAddress Pool Space - The reference to the address space resource which represents Address space for P2S VpnClient.
- Vpn
Client []IpsecIpsec Policies Policy - VpnClientIpsecPolicies for virtual network gateway P2S client.
- Vpn
Client []stringProtocols - VpnClientProtocols for Virtual network gateway.
- Vpn
Client []VpnRevoked Certificates Client Revoked Certificate - VpnClientRevokedCertificate for Virtual network gateway.
- Vpn
Client []VpnRoot Certificates Client Root Certificate - VpnClientRootCertificate for virtual network gateway.
- aad
Audience String - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer String - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant String - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server StringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server StringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers List<RadiusServer> - The radiusServers property for multiple radius server configuration.
- vpn
Authentication List<Either<String,VpnTypes Authentication Type>> - VPN authentication types for the virtual network gateway..
- vpn
Client AddressAddress Pool Space - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client List<IpsecIpsec Policies Policy> - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client List<Either<String,VpnProtocols Client Protocol>> - VpnClientProtocols for Virtual network gateway.
- vpn
Client List<VpnRevoked Certificates Client Revoked Certificate> - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client List<VpnRoot Certificates Client Root Certificate> - VpnClientRootCertificate for virtual network gateway.
- aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers RadiusServer[] - The radiusServers property for multiple radius server configuration.
- vpn
Authentication (string | VpnTypes Authentication Type)[] - VPN authentication types for the virtual network gateway..
- vpn
Client AddressAddress Pool Space - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client IpsecIpsec Policies Policy[] - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client (string | VpnProtocols Client Protocol)[] - VpnClientProtocols for Virtual network gateway.
- vpn
Client VpnRevoked Certificates Client Revoked Certificate[] - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client VpnRoot Certificates Client Root Certificate[] - VpnClientRootCertificate for virtual network gateway.
- aad_
audience str - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad_
issuer str - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad_
tenant str - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius_
server_ straddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius_
server_ strsecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius_
servers Sequence[RadiusServer] - The radiusServers property for multiple radius server configuration.
- vpn_
authentication_ Sequence[Union[str, Vpntypes Authentication Type]] - VPN authentication types for the virtual network gateway..
- vpn_
client_ Addressaddress_ pool Space - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn_
client_ Sequence[Ipsecipsec_ policies Policy] - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn_
client_ Sequence[Union[str, Vpnprotocols Client Protocol]] - VpnClientProtocols for Virtual network gateway.
- vpn_
client_ Sequence[Vpnrevoked_ certificates Client Revoked Certificate] - VpnClientRevokedCertificate for Virtual network gateway.
- vpn_
client_ Sequence[Vpnroot_ certificates Client Root Certificate] - VpnClientRootCertificate for virtual network gateway.
- aad
Audience String - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer String - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant String - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server StringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server StringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers List<Property Map> - The radiusServers property for multiple radius server configuration.
- vpn
Authentication List<String | "Certificate" | "Radius" | "AAD">Types - VPN authentication types for the virtual network gateway..
- vpn
Client Property MapAddress Pool - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client List<Property Map>Ipsec Policies - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client List<String | "IkeProtocols V2" | "SSTP" | "Open VPN"> - VpnClientProtocols for Virtual network gateway.
- vpn
Client List<Property Map>Revoked Certificates - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client List<Property Map>Root Certificates - VpnClientRootCertificate for virtual network gateway.
VpnClientConfigurationResponse, VpnClientConfigurationResponseArgs
- Aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Servers List<Pulumi.Azure Native. Network. Inputs. Radius Server Response> - The radiusServers property for multiple radius server configuration.
- Vpn
Authentication List<string>Types - VPN authentication types for the virtual network gateway..
- Vpn
Client Pulumi.Address Pool Azure Native. Network. Inputs. Address Space Response - The reference to the address space resource which represents Address space for P2S VpnClient.
- Vpn
Client List<Pulumi.Ipsec Policies Azure Native. Network. Inputs. Ipsec Policy Response> - VpnClientIpsecPolicies for virtual network gateway P2S client.
- Vpn
Client List<string>Protocols - VpnClientProtocols for Virtual network gateway.
- Vpn
Client List<Pulumi.Revoked Certificates Azure Native. Network. Inputs. Vpn Client Revoked Certificate Response> - VpnClientRevokedCertificate for Virtual network gateway.
- Vpn
Client List<Pulumi.Root Certificates Azure Native. Network. Inputs. Vpn Client Root Certificate Response> - VpnClientRootCertificate for virtual network gateway.
- Aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- Radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- Radius
Servers []RadiusServer Response - The radiusServers property for multiple radius server configuration.
- Vpn
Authentication []stringTypes - VPN authentication types for the virtual network gateway..
- Vpn
Client AddressAddress Pool Space Response - The reference to the address space resource which represents Address space for P2S VpnClient.
- Vpn
Client []IpsecIpsec Policies Policy Response - VpnClientIpsecPolicies for virtual network gateway P2S client.
- Vpn
Client []stringProtocols - VpnClientProtocols for Virtual network gateway.
- Vpn
Client []VpnRevoked Certificates Client Revoked Certificate Response - VpnClientRevokedCertificate for Virtual network gateway.
- Vpn
Client []VpnRoot Certificates Client Root Certificate Response - VpnClientRootCertificate for virtual network gateway.
- aad
Audience String - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer String - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant String - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server StringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server StringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers List<RadiusServer Response> - The radiusServers property for multiple radius server configuration.
- vpn
Authentication List<String>Types - VPN authentication types for the virtual network gateway..
- vpn
Client AddressAddress Pool Space Response - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client List<IpsecIpsec Policies Policy Response> - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client List<String>Protocols - VpnClientProtocols for Virtual network gateway.
- vpn
Client List<VpnRevoked Certificates Client Revoked Certificate Response> - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client List<VpnRoot Certificates Client Root Certificate Response> - VpnClientRootCertificate for virtual network gateway.
- aad
Audience string - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer string - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant string - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server stringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server stringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers RadiusServer Response[] - The radiusServers property for multiple radius server configuration.
- vpn
Authentication string[]Types - VPN authentication types for the virtual network gateway..
- vpn
Client AddressAddress Pool Space Response - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client IpsecIpsec Policies Policy Response[] - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client string[]Protocols - VpnClientProtocols for Virtual network gateway.
- vpn
Client VpnRevoked Certificates Client Revoked Certificate Response[] - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client VpnRoot Certificates Client Root Certificate Response[] - VpnClientRootCertificate for virtual network gateway.
- aad_
audience str - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad_
issuer str - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad_
tenant str - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius_
server_ straddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius_
server_ strsecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius_
servers Sequence[RadiusServer Response] - The radiusServers property for multiple radius server configuration.
- vpn_
authentication_ Sequence[str]types - VPN authentication types for the virtual network gateway..
- vpn_
client_ Addressaddress_ pool Space Response - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn_
client_ Sequence[Ipsecipsec_ policies Policy Response] - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn_
client_ Sequence[str]protocols - VpnClientProtocols for Virtual network gateway.
- vpn_
client_ Sequence[Vpnrevoked_ certificates Client Revoked Certificate Response] - VpnClientRevokedCertificate for Virtual network gateway.
- vpn_
client_ Sequence[Vpnroot_ certificates Client Root Certificate Response] - VpnClientRootCertificate for virtual network gateway.
- aad
Audience String - The AADAudience property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Issuer String - The AADIssuer property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- aad
Tenant String - The AADTenant property of the VirtualNetworkGateway resource for vpn client connection used for AAD authentication.
- radius
Server StringAddress - The radius server address property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Server StringSecret - The radius secret property of the VirtualNetworkGateway resource for vpn client connection.
- radius
Servers List<Property Map> - The radiusServers property for multiple radius server configuration.
- vpn
Authentication List<String>Types - VPN authentication types for the virtual network gateway..
- vpn
Client Property MapAddress Pool - The reference to the address space resource which represents Address space for P2S VpnClient.
- vpn
Client List<Property Map>Ipsec Policies - VpnClientIpsecPolicies for virtual network gateway P2S client.
- vpn
Client List<String>Protocols - VpnClientProtocols for Virtual network gateway.
- vpn
Client List<Property Map>Revoked Certificates - VpnClientRevokedCertificate for Virtual network gateway.
- vpn
Client List<Property Map>Root Certificates - VpnClientRootCertificate for virtual network gateway.
VpnClientProtocol, VpnClientProtocolArgs
- Ike
V2 - IkeV2
- SSTP
- SSTP
- Open
VPN - OpenVPN
- Vpn
Client Protocol Ike V2 - IkeV2
- Vpn
Client Protocol SSTP - SSTP
- Vpn
Client Protocol Open VPN - OpenVPN
- Ike
V2 - IkeV2
- SSTP
- SSTP
- Open
VPN - OpenVPN
- Ike
V2 - IkeV2
- SSTP
- SSTP
- Open
VPN - OpenVPN
- IKE_V2
- IkeV2
- SSTP
- SSTP
- OPEN_VPN
- OpenVPN
- "Ike
V2" - IkeV2
- "SSTP"
- SSTP
- "Open
VPN" - OpenVPN
VpnClientRevokedCertificate, VpnClientRevokedCertificateArgs
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint String
- The revoked VPN client certificate thumbprint.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint string
- The revoked VPN client certificate thumbprint.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint str
- The revoked VPN client certificate thumbprint.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint String
- The revoked VPN client certificate thumbprint.
VpnClientRevokedCertificateResponse, VpnClientRevokedCertificateResponseArgs
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the VPN client revoked certificate resource.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the VPN client revoked certificate resource.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the VPN client revoked certificate resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint String
- The revoked VPN client certificate thumbprint.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State string - The provisioning state of the VPN client revoked certificate resource.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint string
- The revoked VPN client certificate thumbprint.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- provisioning_
state str - The provisioning state of the VPN client revoked certificate resource.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint str
- The revoked VPN client certificate thumbprint.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the VPN client revoked certificate resource.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- thumbprint String
- The revoked VPN client certificate thumbprint.
VpnClientRootCertificate, VpnClientRootCertificateArgs
- Public
Cert stringData - The certificate public data.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Public
Cert stringData - The certificate public data.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- public
Cert StringData - The certificate public data.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- public
Cert stringData - The certificate public data.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- public_
cert_ strdata - The certificate public data.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- public
Cert StringData - The certificate public data.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
VpnClientRootCertificateResponse, VpnClientRootCertificateResponseArgs
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the VPN client root certificate resource.
- Public
Cert stringData - The certificate public data.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Provisioning
State string - The provisioning state of the VPN client root certificate resource.
- Public
Cert stringData - The certificate public data.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the VPN client root certificate resource.
- public
Cert StringData - The certificate public data.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State string - The provisioning state of the VPN client root certificate resource.
- public
Cert stringData - The certificate public data.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- provisioning_
state str - The provisioning state of the VPN client root certificate resource.
- public_
cert_ strdata - The certificate public data.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- provisioning
State String - The provisioning state of the VPN client root certificate resource.
- public
Cert StringData - The certificate public data.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
VpnGatewayGeneration, VpnGatewayGenerationArgs
- None
- None
- Generation1
- Generation1
- Generation2
- Generation2
- Vpn
Gateway Generation None - None
- Vpn
Gateway Generation Generation1 - Generation1
- Vpn
Gateway Generation Generation2 - Generation2
- None
- None
- Generation1
- Generation1
- Generation2
- Generation2
- None
- None
- Generation1
- Generation1
- Generation2
- Generation2
- NONE
- None
- GENERATION1
- Generation1
- GENERATION2
- Generation2
- "None"
- None
- "Generation1"
- Generation1
- "Generation2"
- Generation2
VpnType, VpnTypeArgs
- Policy
Based - PolicyBased
- Route
Based - RouteBased
- Vpn
Type Policy Based - PolicyBased
- Vpn
Type Route Based - RouteBased
- Policy
Based - PolicyBased
- Route
Based - RouteBased
- Policy
Based - PolicyBased
- Route
Based - RouteBased
- POLICY_BASED
- PolicyBased
- ROUTE_BASED
- RouteBased
- "Policy
Based" - PolicyBased
- "Route
Based" - RouteBased
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:VirtualNetworkGateway vpngw /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworkGateways/vpngw
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0