azure-native.network.VpnServerConfiguration
Explore with Pulumi AI
VpnServerConfiguration Resource.
Uses Azure REST API version 2023-02-01. In version 1.x of the Azure Native provider, it used API version 2020-11-01.
Other available API versions: 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-05-01.
Example Usage
VpnServerConfigurationCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var vpnServerConfiguration = new AzureNative.Network.VpnServerConfiguration("vpnServerConfiguration", new()
    {
        ConfigurationPolicyGroups = new[]
        {
            new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1",
                IsDefault = true,
                Name = "policyGroup1",
                PolicyMembers = new[]
                {
                    new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupMemberArgs
                    {
                        AttributeType = AzureNative.Network.VpnPolicyMemberAttributeType.RadiusAzureGroupId,
                        AttributeValue = "6ad1bd08",
                        Name = "policy1",
                    },
                },
                Priority = 0,
            },
            new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2",
                IsDefault = true,
                Name = "policyGroup2",
                PolicyMembers = new[]
                {
                    new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupMemberArgs
                    {
                        AttributeType = AzureNative.Network.VpnPolicyMemberAttributeType.CertificateGroupId,
                        AttributeValue = "red.com",
                        Name = "policy2",
                    },
                },
                Priority = 0,
            },
        },
        Location = "West US",
        RadiusClientRootCertificates = new[]
        {
            new AzureNative.Network.Inputs.VpnServerConfigRadiusClientRootCertificateArgs
            {
                Name = "vpnServerConfigRadiusClientRootCert1",
                Thumbprint = "83FFBFC8848B5A5836C94D0112367E16148A286F",
            },
        },
        RadiusServerRootCertificates = new[]
        {
            new AzureNative.Network.Inputs.VpnServerConfigRadiusServerRootCertificateArgs
            {
                Name = "vpnServerConfigRadiusServerRootCer1",
                PublicCertData = "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM",
            },
        },
        RadiusServers = new[]
        {
            new AzureNative.Network.Inputs.RadiusServerArgs
            {
                RadiusServerAddress = "10.0.0.0",
                RadiusServerScore = 25,
                RadiusServerSecret = "radiusServerSecret",
            },
        },
        ResourceGroupName = "rg1",
        Tags = 
        {
            { "key1", "value1" },
        },
        VpnClientIpsecPolicies = new[]
        {
            new AzureNative.Network.Inputs.IpsecPolicyArgs
            {
                DhGroup = AzureNative.Network.DhGroup.DHGroup14,
                IkeEncryption = AzureNative.Network.IkeEncryption.AES256,
                IkeIntegrity = AzureNative.Network.IkeIntegrity.SHA384,
                IpsecEncryption = AzureNative.Network.IpsecEncryption.AES256,
                IpsecIntegrity = AzureNative.Network.IpsecIntegrity.SHA256,
                PfsGroup = AzureNative.Network.PfsGroup.PFS14,
                SaDataSizeKilobytes = 429497,
                SaLifeTimeSeconds = 86472,
            },
        },
        VpnClientRevokedCertificates = new[]
        {
            new AzureNative.Network.Inputs.VpnServerConfigVpnClientRevokedCertificateArgs
            {
                Name = "vpnServerConfigVpnClientRevokedCert1",
                Thumbprint = "83FFBFC8848B5A5836C94D0112367E16148A286F",
            },
        },
        VpnClientRootCertificates = new[]
        {
            new AzureNative.Network.Inputs.VpnServerConfigVpnClientRootCertificateArgs
            {
                Name = "vpnServerConfigVpnClientRootCert1",
                PublicCertData = "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN",
            },
        },
        VpnProtocols = new[]
        {
            AzureNative.Network.VpnGatewayTunnelingProtocol.IkeV2,
        },
        VpnServerConfigurationName = "vpnServerConfiguration1",
    });
});
package main
import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewVpnServerConfiguration(ctx, "vpnServerConfiguration", &network.VpnServerConfigurationArgs{
			ConfigurationPolicyGroups: network.VpnServerConfigurationPolicyGroupArray{
				&network.VpnServerConfigurationPolicyGroupArgs{
					Id:        pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1"),
					IsDefault: pulumi.Bool(true),
					Name:      pulumi.String("policyGroup1"),
					PolicyMembers: network.VpnServerConfigurationPolicyGroupMemberArray{
						&network.VpnServerConfigurationPolicyGroupMemberArgs{
							AttributeType:  pulumi.String(network.VpnPolicyMemberAttributeTypeRadiusAzureGroupId),
							AttributeValue: pulumi.String("6ad1bd08"),
							Name:           pulumi.String("policy1"),
						},
					},
					Priority: pulumi.Int(0),
				},
				&network.VpnServerConfigurationPolicyGroupArgs{
					Id:        pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2"),
					IsDefault: pulumi.Bool(true),
					Name:      pulumi.String("policyGroup2"),
					PolicyMembers: network.VpnServerConfigurationPolicyGroupMemberArray{
						&network.VpnServerConfigurationPolicyGroupMemberArgs{
							AttributeType:  pulumi.String(network.VpnPolicyMemberAttributeTypeCertificateGroupId),
							AttributeValue: pulumi.String("red.com"),
							Name:           pulumi.String("policy2"),
						},
					},
					Priority: pulumi.Int(0),
				},
			},
			Location: pulumi.String("West US"),
			RadiusClientRootCertificates: network.VpnServerConfigRadiusClientRootCertificateArray{
				&network.VpnServerConfigRadiusClientRootCertificateArgs{
					Name:       pulumi.String("vpnServerConfigRadiusClientRootCert1"),
					Thumbprint: pulumi.String("83FFBFC8848B5A5836C94D0112367E16148A286F"),
				},
			},
			RadiusServerRootCertificates: network.VpnServerConfigRadiusServerRootCertificateArray{
				&network.VpnServerConfigRadiusServerRootCertificateArgs{
					Name:           pulumi.String("vpnServerConfigRadiusServerRootCer1"),
					PublicCertData: pulumi.String("MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM"),
				},
			},
			RadiusServers: network.RadiusServerArray{
				&network.RadiusServerArgs{
					RadiusServerAddress: pulumi.String("10.0.0.0"),
					RadiusServerScore:   pulumi.Float64(25),
					RadiusServerSecret:  pulumi.String("radiusServerSecret"),
				},
			},
			ResourceGroupName: pulumi.String("rg1"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			VpnClientIpsecPolicies: network.IpsecPolicyArray{
				&network.IpsecPolicyArgs{
					DhGroup:             pulumi.String(network.DhGroupDHGroup14),
					IkeEncryption:       pulumi.String(network.IkeEncryptionAES256),
					IkeIntegrity:        pulumi.String(network.IkeIntegritySHA384),
					IpsecEncryption:     pulumi.String(network.IpsecEncryptionAES256),
					IpsecIntegrity:      pulumi.String(network.IpsecIntegritySHA256),
					PfsGroup:            pulumi.String(network.PfsGroupPFS14),
					SaDataSizeKilobytes: pulumi.Int(429497),
					SaLifeTimeSeconds:   pulumi.Int(86472),
				},
			},
			VpnClientRevokedCertificates: network.VpnServerConfigVpnClientRevokedCertificateArray{
				&network.VpnServerConfigVpnClientRevokedCertificateArgs{
					Name:       pulumi.String("vpnServerConfigVpnClientRevokedCert1"),
					Thumbprint: pulumi.String("83FFBFC8848B5A5836C94D0112367E16148A286F"),
				},
			},
			VpnClientRootCertificates: network.VpnServerConfigVpnClientRootCertificateArray{
				&network.VpnServerConfigVpnClientRootCertificateArgs{
					Name:           pulumi.String("vpnServerConfigVpnClientRootCert1"),
					PublicCertData: pulumi.String("MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN"),
				},
			},
			VpnProtocols: pulumi.StringArray{
				pulumi.String(network.VpnGatewayTunnelingProtocolIkeV2),
			},
			VpnServerConfigurationName: pulumi.String("vpnServerConfiguration1"),
		})
		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.VpnServerConfiguration;
import com.pulumi.azurenative.network.VpnServerConfigurationArgs;
import com.pulumi.azurenative.network.inputs.VpnServerConfigurationPolicyGroupArgs;
import com.pulumi.azurenative.network.inputs.VpnServerConfigRadiusClientRootCertificateArgs;
import com.pulumi.azurenative.network.inputs.VpnServerConfigRadiusServerRootCertificateArgs;
import com.pulumi.azurenative.network.inputs.RadiusServerArgs;
import com.pulumi.azurenative.network.inputs.IpsecPolicyArgs;
import com.pulumi.azurenative.network.inputs.VpnServerConfigVpnClientRevokedCertificateArgs;
import com.pulumi.azurenative.network.inputs.VpnServerConfigVpnClientRootCertificateArgs;
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 vpnServerConfiguration = new VpnServerConfiguration("vpnServerConfiguration", VpnServerConfigurationArgs.builder()
            .configurationPolicyGroups(            
                VpnServerConfigurationPolicyGroupArgs.builder()
                    .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1")
                    .isDefault(true)
                    .name("policyGroup1")
                    .policyMembers(VpnServerConfigurationPolicyGroupMemberArgs.builder()
                        .attributeType("RadiusAzureGroupId")
                        .attributeValue("6ad1bd08")
                        .name("policy1")
                        .build())
                    .priority(0)
                    .build(),
                VpnServerConfigurationPolicyGroupArgs.builder()
                    .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2")
                    .isDefault(true)
                    .name("policyGroup2")
                    .policyMembers(VpnServerConfigurationPolicyGroupMemberArgs.builder()
                        .attributeType("CertificateGroupId")
                        .attributeValue("red.com")
                        .name("policy2")
                        .build())
                    .priority(0)
                    .build())
            .location("West US")
            .radiusClientRootCertificates(VpnServerConfigRadiusClientRootCertificateArgs.builder()
                .name("vpnServerConfigRadiusClientRootCert1")
                .thumbprint("83FFBFC8848B5A5836C94D0112367E16148A286F")
                .build())
            .radiusServerRootCertificates(VpnServerConfigRadiusServerRootCertificateArgs.builder()
                .name("vpnServerConfigRadiusServerRootCer1")
                .publicCertData("MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM")
                .build())
            .radiusServers(RadiusServerArgs.builder()
                .radiusServerAddress("10.0.0.0")
                .radiusServerScore(25)
                .radiusServerSecret("radiusServerSecret")
                .build())
            .resourceGroupName("rg1")
            .tags(Map.of("key1", "value1"))
            .vpnClientIpsecPolicies(IpsecPolicyArgs.builder()
                .dhGroup("DHGroup14")
                .ikeEncryption("AES256")
                .ikeIntegrity("SHA384")
                .ipsecEncryption("AES256")
                .ipsecIntegrity("SHA256")
                .pfsGroup("PFS14")
                .saDataSizeKilobytes(429497)
                .saLifeTimeSeconds(86472)
                .build())
            .vpnClientRevokedCertificates(VpnServerConfigVpnClientRevokedCertificateArgs.builder()
                .name("vpnServerConfigVpnClientRevokedCert1")
                .thumbprint("83FFBFC8848B5A5836C94D0112367E16148A286F")
                .build())
            .vpnClientRootCertificates(VpnServerConfigVpnClientRootCertificateArgs.builder()
                .name("vpnServerConfigVpnClientRootCert1")
                .publicCertData("MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN")
                .build())
            .vpnProtocols("IkeV2")
            .vpnServerConfigurationName("vpnServerConfiguration1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const vpnServerConfiguration = new azure_native.network.VpnServerConfiguration("vpnServerConfiguration", {
    configurationPolicyGroups: [
        {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1",
            isDefault: true,
            name: "policyGroup1",
            policyMembers: [{
                attributeType: azure_native.network.VpnPolicyMemberAttributeType.RadiusAzureGroupId,
                attributeValue: "6ad1bd08",
                name: "policy1",
            }],
            priority: 0,
        },
        {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2",
            isDefault: true,
            name: "policyGroup2",
            policyMembers: [{
                attributeType: azure_native.network.VpnPolicyMemberAttributeType.CertificateGroupId,
                attributeValue: "red.com",
                name: "policy2",
            }],
            priority: 0,
        },
    ],
    location: "West US",
    radiusClientRootCertificates: [{
        name: "vpnServerConfigRadiusClientRootCert1",
        thumbprint: "83FFBFC8848B5A5836C94D0112367E16148A286F",
    }],
    radiusServerRootCertificates: [{
        name: "vpnServerConfigRadiusServerRootCer1",
        publicCertData: "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM",
    }],
    radiusServers: [{
        radiusServerAddress: "10.0.0.0",
        radiusServerScore: 25,
        radiusServerSecret: "radiusServerSecret",
    }],
    resourceGroupName: "rg1",
    tags: {
        key1: "value1",
    },
    vpnClientIpsecPolicies: [{
        dhGroup: azure_native.network.DhGroup.DHGroup14,
        ikeEncryption: azure_native.network.IkeEncryption.AES256,
        ikeIntegrity: azure_native.network.IkeIntegrity.SHA384,
        ipsecEncryption: azure_native.network.IpsecEncryption.AES256,
        ipsecIntegrity: azure_native.network.IpsecIntegrity.SHA256,
        pfsGroup: azure_native.network.PfsGroup.PFS14,
        saDataSizeKilobytes: 429497,
        saLifeTimeSeconds: 86472,
    }],
    vpnClientRevokedCertificates: [{
        name: "vpnServerConfigVpnClientRevokedCert1",
        thumbprint: "83FFBFC8848B5A5836C94D0112367E16148A286F",
    }],
    vpnClientRootCertificates: [{
        name: "vpnServerConfigVpnClientRootCert1",
        publicCertData: "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN",
    }],
    vpnProtocols: [azure_native.network.VpnGatewayTunnelingProtocol.IkeV2],
    vpnServerConfigurationName: "vpnServerConfiguration1",
});
import pulumi
import pulumi_azure_native as azure_native
vpn_server_configuration = azure_native.network.VpnServerConfiguration("vpnServerConfiguration",
    configuration_policy_groups=[
        {
            "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1",
            "is_default": True,
            "name": "policyGroup1",
            "policy_members": [{
                "attribute_type": azure_native.network.VpnPolicyMemberAttributeType.RADIUS_AZURE_GROUP_ID,
                "attribute_value": "6ad1bd08",
                "name": "policy1",
            }],
            "priority": 0,
        },
        {
            "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2",
            "is_default": True,
            "name": "policyGroup2",
            "policy_members": [{
                "attribute_type": azure_native.network.VpnPolicyMemberAttributeType.CERTIFICATE_GROUP_ID,
                "attribute_value": "red.com",
                "name": "policy2",
            }],
            "priority": 0,
        },
    ],
    location="West US",
    radius_client_root_certificates=[{
        "name": "vpnServerConfigRadiusClientRootCert1",
        "thumbprint": "83FFBFC8848B5A5836C94D0112367E16148A286F",
    }],
    radius_server_root_certificates=[{
        "name": "vpnServerConfigRadiusServerRootCer1",
        "public_cert_data": "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM",
    }],
    radius_servers=[{
        "radius_server_address": "10.0.0.0",
        "radius_server_score": 25,
        "radius_server_secret": "radiusServerSecret",
    }],
    resource_group_name="rg1",
    tags={
        "key1": "value1",
    },
    vpn_client_ipsec_policies=[{
        "dh_group": azure_native.network.DhGroup.DH_GROUP14,
        "ike_encryption": azure_native.network.IkeEncryption.AES256,
        "ike_integrity": azure_native.network.IkeIntegrity.SHA384,
        "ipsec_encryption": azure_native.network.IpsecEncryption.AES256,
        "ipsec_integrity": azure_native.network.IpsecIntegrity.SHA256,
        "pfs_group": azure_native.network.PfsGroup.PFS14,
        "sa_data_size_kilobytes": 429497,
        "sa_life_time_seconds": 86472,
    }],
    vpn_client_revoked_certificates=[{
        "name": "vpnServerConfigVpnClientRevokedCert1",
        "thumbprint": "83FFBFC8848B5A5836C94D0112367E16148A286F",
    }],
    vpn_client_root_certificates=[{
        "name": "vpnServerConfigVpnClientRootCert1",
        "public_cert_data": "MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN",
    }],
    vpn_protocols=[azure_native.network.VpnGatewayTunnelingProtocol.IKE_V2],
    vpn_server_configuration_name="vpnServerConfiguration1")
resources:
  vpnServerConfiguration:
    type: azure-native:network:VpnServerConfiguration
    properties:
      configurationPolicyGroups:
        - id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup1
          isDefault: true
          name: policyGroup1
          policyMembers:
            - attributeType: RadiusAzureGroupId
              attributeValue: 6ad1bd08
              name: policy1
          priority: 0
        - id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/vpnServerConfigurations/vpnServerConfiguration1/vpnServerConfigurationPolicyGroups/policyGroup2
          isDefault: true
          name: policyGroup2
          policyMembers:
            - attributeType: CertificateGroupId
              attributeValue: red.com
              name: policy2
          priority: 0
      location: West US
      radiusClientRootCertificates:
        - name: vpnServerConfigRadiusClientRootCert1
          thumbprint: 83FFBFC8848B5A5836C94D0112367E16148A286F
      radiusServerRootCertificates:
        - name: vpnServerConfigRadiusServerRootCer1
          publicCertData: MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuM
      radiusServers:
        - radiusServerAddress: 10.0.0.0
          radiusServerScore: 25
          radiusServerSecret: radiusServerSecret
      resourceGroupName: rg1
      tags:
        key1: value1
      vpnClientIpsecPolicies:
        - dhGroup: DHGroup14
          ikeEncryption: AES256
          ikeIntegrity: SHA384
          ipsecEncryption: AES256
          ipsecIntegrity: SHA256
          pfsGroup: PFS14
          saDataSizeKilobytes: 429497
          saLifeTimeSeconds: 86472
      vpnClientRevokedCertificates:
        - name: vpnServerConfigVpnClientRevokedCert1
          thumbprint: 83FFBFC8848B5A5836C94D0112367E16148A286F
      vpnClientRootCertificates:
        - name: vpnServerConfigVpnClientRootCert1
          publicCertData: MIIC5zCCAc+gAwIBAgIQErQ0Hk4aDJxIA+Q5RagB+jANBgkqhkiG9w0BAQsFADAWMRQwEgYDVQQDDAtQMlNSb290Q2VydDAeFw0xNzEyMTQyMTA3MzhaFw0xODEyMTQyMTI3MzhaMBYxFDASBgNVBAMMC1AyU1Jvb3RDZXJ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArP7/NQXmW7cQ/ZR1mv3Y3I29Lt7HTOqzo/1KUOoVH3NItbQIRAQbwKy3UWrOFz4eGNX2GWtNRMdCyWsKeqy9Ltsdfcm1IbKXkl84DFeU/ZacXu4Dl3xX3gV5du4TLZjEowJELyur11Ea2YcjPRQ/FzAF9/hGuboS1HZQEPLx4FdUs9OxCYOtc0MxBCwLfVTTRqarb0Ne+arNYd4kCzIhAke1nOyKAJBda5ZL+VHy3S5S8qGlD46jm8HXugmAkUygS4oIIXOmj/1O9sNAi3LN60zufSzCmP8Rm/iUGX+DHAGGiXxwZOKQLEDaZXKqoHjMPP0XudmSWwOIbyeQVrLhkwIDAQABozEwLzAOBgNVHQ8BAf8EBAMCAgQwHQYDVR0OBBYEFEfeNU2trYxNLF9ONmuJUsT13pKDMA0GCSqGSIb3DQEBCwUAA4IBAQBmM6RJzsGGipxyMhimHKN2xlkejhVsgBoTAhOU0llW9aUSwINJ9zFUGgI8IzUFy1VG776fchHp0LMRmPSIUYk5btEPxbsrPtumPuMH8EQGrS+Rt4pD+78c8H1fEPkq5CmDl/PKu4JoFGv+aFcE+Od0hlILstIF10Qysf++QXDolKfzJa/56bgMeYKFiju73loiRM57ns8ddXpfLl792UVpRkFU62LNns6Y1LKTwapmUF4IvIuAIzd6LZNOQng64LAKXtKnViJ1JQiXwf4CEzhgvAti3/ejpb3U90hsrUcyZi6wBv9bZLcAJRWpz61JNYliM1d1grSwQDKGXNQE4xuN
      vpnProtocols:
        - IkeV2
      vpnServerConfigurationName: vpnServerConfiguration1
Create VpnServerConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VpnServerConfiguration(name: string, args: VpnServerConfigurationArgs, opts?: CustomResourceOptions);@overload
def VpnServerConfiguration(resource_name: str,
                           args: VpnServerConfigurationArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def VpnServerConfiguration(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_group_name: Optional[str] = None,
                           radius_server_secret: Optional[str] = None,
                           radius_client_root_certificates: Optional[Sequence[VpnServerConfigRadiusClientRootCertificateArgs]] = None,
                           radius_servers: Optional[Sequence[RadiusServerArgs]] = None,
                           name: Optional[str] = None,
                           configuration_policy_groups: Optional[Sequence[VpnServerConfigurationPolicyGroupArgs]] = None,
                           radius_server_address: Optional[str] = None,
                           radius_server_root_certificates: Optional[Sequence[VpnServerConfigRadiusServerRootCertificateArgs]] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           location: Optional[str] = None,
                           id: Optional[str] = None,
                           aad_authentication_parameters: Optional[AadAuthenticationParametersArgs] = None,
                           vpn_authentication_types: Optional[Sequence[Union[str, VpnAuthenticationType]]] = None,
                           vpn_client_ipsec_policies: Optional[Sequence[IpsecPolicyArgs]] = None,
                           vpn_client_revoked_certificates: Optional[Sequence[VpnServerConfigVpnClientRevokedCertificateArgs]] = None,
                           vpn_client_root_certificates: Optional[Sequence[VpnServerConfigVpnClientRootCertificateArgs]] = None,
                           vpn_protocols: Optional[Sequence[Union[str, VpnGatewayTunnelingProtocol]]] = None,
                           vpn_server_configuration_name: Optional[str] = None)func NewVpnServerConfiguration(ctx *Context, name string, args VpnServerConfigurationArgs, opts ...ResourceOption) (*VpnServerConfiguration, error)public VpnServerConfiguration(string name, VpnServerConfigurationArgs args, CustomResourceOptions? opts = null)
public VpnServerConfiguration(String name, VpnServerConfigurationArgs args)
public VpnServerConfiguration(String name, VpnServerConfigurationArgs args, CustomResourceOptions options)
type: azure-native:network:VpnServerConfiguration
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 VpnServerConfigurationArgs
- 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 VpnServerConfigurationArgs
- 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 VpnServerConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VpnServerConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VpnServerConfigurationArgs
- 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 vpnServerConfigurationResource = new AzureNative.Network.VpnServerConfiguration("vpnServerConfigurationResource", new()
{
    ResourceGroupName = "string",
    RadiusServerSecret = "string",
    RadiusClientRootCertificates = new[]
    {
        new AzureNative.Network.Inputs.VpnServerConfigRadiusClientRootCertificateArgs
        {
            Name = "string",
            Thumbprint = "string",
        },
    },
    RadiusServers = new[]
    {
        new AzureNative.Network.Inputs.RadiusServerArgs
        {
            RadiusServerAddress = "string",
            RadiusServerScore = 0,
            RadiusServerSecret = "string",
        },
    },
    Name = "string",
    ConfigurationPolicyGroups = new[]
    {
        new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupArgs
        {
            Id = "string",
            IsDefault = false,
            Name = "string",
            PolicyMembers = new[]
            {
                new AzureNative.Network.Inputs.VpnServerConfigurationPolicyGroupMemberArgs
                {
                    AttributeType = "string",
                    AttributeValue = "string",
                    Name = "string",
                },
            },
            Priority = 0,
        },
    },
    RadiusServerAddress = "string",
    RadiusServerRootCertificates = new[]
    {
        new AzureNative.Network.Inputs.VpnServerConfigRadiusServerRootCertificateArgs
        {
            Name = "string",
            PublicCertData = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    Location = "string",
    Id = "string",
    AadAuthenticationParameters = new AzureNative.Network.Inputs.AadAuthenticationParametersArgs
    {
        AadAudience = "string",
        AadIssuer = "string",
        AadTenant = "string",
    },
    VpnAuthenticationTypes = new[]
    {
        "string",
    },
    VpnClientIpsecPolicies = new[]
    {
        new AzureNative.Network.Inputs.IpsecPolicyArgs
        {
            DhGroup = "string",
            IkeEncryption = "string",
            IkeIntegrity = "string",
            IpsecEncryption = "string",
            IpsecIntegrity = "string",
            PfsGroup = "string",
            SaDataSizeKilobytes = 0,
            SaLifeTimeSeconds = 0,
        },
    },
    VpnClientRevokedCertificates = new[]
    {
        new AzureNative.Network.Inputs.VpnServerConfigVpnClientRevokedCertificateArgs
        {
            Name = "string",
            Thumbprint = "string",
        },
    },
    VpnClientRootCertificates = new[]
    {
        new AzureNative.Network.Inputs.VpnServerConfigVpnClientRootCertificateArgs
        {
            Name = "string",
            PublicCertData = "string",
        },
    },
    VpnProtocols = new[]
    {
        "string",
    },
    VpnServerConfigurationName = "string",
});
example, err := network.NewVpnServerConfiguration(ctx, "vpnServerConfigurationResource", &network.VpnServerConfigurationArgs{
	ResourceGroupName:  pulumi.String("string"),
	RadiusServerSecret: pulumi.String("string"),
	RadiusClientRootCertificates: network.VpnServerConfigRadiusClientRootCertificateArray{
		&network.VpnServerConfigRadiusClientRootCertificateArgs{
			Name:       pulumi.String("string"),
			Thumbprint: pulumi.String("string"),
		},
	},
	RadiusServers: network.RadiusServerArray{
		&network.RadiusServerArgs{
			RadiusServerAddress: pulumi.String("string"),
			RadiusServerScore:   pulumi.Float64(0),
			RadiusServerSecret:  pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	ConfigurationPolicyGroups: network.VpnServerConfigurationPolicyGroupArray{
		&network.VpnServerConfigurationPolicyGroupArgs{
			Id:        pulumi.String("string"),
			IsDefault: pulumi.Bool(false),
			Name:      pulumi.String("string"),
			PolicyMembers: network.VpnServerConfigurationPolicyGroupMemberArray{
				&network.VpnServerConfigurationPolicyGroupMemberArgs{
					AttributeType:  pulumi.String("string"),
					AttributeValue: pulumi.String("string"),
					Name:           pulumi.String("string"),
				},
			},
			Priority: pulumi.Int(0),
		},
	},
	RadiusServerAddress: pulumi.String("string"),
	RadiusServerRootCertificates: network.VpnServerConfigRadiusServerRootCertificateArray{
		&network.VpnServerConfigRadiusServerRootCertificateArgs{
			Name:           pulumi.String("string"),
			PublicCertData: pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Id:       pulumi.String("string"),
	AadAuthenticationParameters: &network.AadAuthenticationParametersArgs{
		AadAudience: pulumi.String("string"),
		AadIssuer:   pulumi.String("string"),
		AadTenant:   pulumi.String("string"),
	},
	VpnAuthenticationTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	VpnClientIpsecPolicies: network.IpsecPolicyArray{
		&network.IpsecPolicyArgs{
			DhGroup:             pulumi.String("string"),
			IkeEncryption:       pulumi.String("string"),
			IkeIntegrity:        pulumi.String("string"),
			IpsecEncryption:     pulumi.String("string"),
			IpsecIntegrity:      pulumi.String("string"),
			PfsGroup:            pulumi.String("string"),
			SaDataSizeKilobytes: pulumi.Int(0),
			SaLifeTimeSeconds:   pulumi.Int(0),
		},
	},
	VpnClientRevokedCertificates: network.VpnServerConfigVpnClientRevokedCertificateArray{
		&network.VpnServerConfigVpnClientRevokedCertificateArgs{
			Name:       pulumi.String("string"),
			Thumbprint: pulumi.String("string"),
		},
	},
	VpnClientRootCertificates: network.VpnServerConfigVpnClientRootCertificateArray{
		&network.VpnServerConfigVpnClientRootCertificateArgs{
			Name:           pulumi.String("string"),
			PublicCertData: pulumi.String("string"),
		},
	},
	VpnProtocols: pulumi.StringArray{
		pulumi.String("string"),
	},
	VpnServerConfigurationName: pulumi.String("string"),
})
var vpnServerConfigurationResource = new VpnServerConfiguration("vpnServerConfigurationResource", VpnServerConfigurationArgs.builder()
    .resourceGroupName("string")
    .radiusServerSecret("string")
    .radiusClientRootCertificates(VpnServerConfigRadiusClientRootCertificateArgs.builder()
        .name("string")
        .thumbprint("string")
        .build())
    .radiusServers(RadiusServerArgs.builder()
        .radiusServerAddress("string")
        .radiusServerScore(0)
        .radiusServerSecret("string")
        .build())
    .name("string")
    .configurationPolicyGroups(VpnServerConfigurationPolicyGroupArgs.builder()
        .id("string")
        .isDefault(false)
        .name("string")
        .policyMembers(VpnServerConfigurationPolicyGroupMemberArgs.builder()
            .attributeType("string")
            .attributeValue("string")
            .name("string")
            .build())
        .priority(0)
        .build())
    .radiusServerAddress("string")
    .radiusServerRootCertificates(VpnServerConfigRadiusServerRootCertificateArgs.builder()
        .name("string")
        .publicCertData("string")
        .build())
    .tags(Map.of("string", "string"))
    .location("string")
    .id("string")
    .aadAuthenticationParameters(AadAuthenticationParametersArgs.builder()
        .aadAudience("string")
        .aadIssuer("string")
        .aadTenant("string")
        .build())
    .vpnAuthenticationTypes("string")
    .vpnClientIpsecPolicies(IpsecPolicyArgs.builder()
        .dhGroup("string")
        .ikeEncryption("string")
        .ikeIntegrity("string")
        .ipsecEncryption("string")
        .ipsecIntegrity("string")
        .pfsGroup("string")
        .saDataSizeKilobytes(0)
        .saLifeTimeSeconds(0)
        .build())
    .vpnClientRevokedCertificates(VpnServerConfigVpnClientRevokedCertificateArgs.builder()
        .name("string")
        .thumbprint("string")
        .build())
    .vpnClientRootCertificates(VpnServerConfigVpnClientRootCertificateArgs.builder()
        .name("string")
        .publicCertData("string")
        .build())
    .vpnProtocols("string")
    .vpnServerConfigurationName("string")
    .build());
vpn_server_configuration_resource = azure_native.network.VpnServerConfiguration("vpnServerConfigurationResource",
    resource_group_name="string",
    radius_server_secret="string",
    radius_client_root_certificates=[{
        "name": "string",
        "thumbprint": "string",
    }],
    radius_servers=[{
        "radius_server_address": "string",
        "radius_server_score": 0,
        "radius_server_secret": "string",
    }],
    name="string",
    configuration_policy_groups=[{
        "id": "string",
        "is_default": False,
        "name": "string",
        "policy_members": [{
            "attribute_type": "string",
            "attribute_value": "string",
            "name": "string",
        }],
        "priority": 0,
    }],
    radius_server_address="string",
    radius_server_root_certificates=[{
        "name": "string",
        "public_cert_data": "string",
    }],
    tags={
        "string": "string",
    },
    location="string",
    id="string",
    aad_authentication_parameters={
        "aad_audience": "string",
        "aad_issuer": "string",
        "aad_tenant": "string",
    },
    vpn_authentication_types=["string"],
    vpn_client_ipsec_policies=[{
        "dh_group": "string",
        "ike_encryption": "string",
        "ike_integrity": "string",
        "ipsec_encryption": "string",
        "ipsec_integrity": "string",
        "pfs_group": "string",
        "sa_data_size_kilobytes": 0,
        "sa_life_time_seconds": 0,
    }],
    vpn_client_revoked_certificates=[{
        "name": "string",
        "thumbprint": "string",
    }],
    vpn_client_root_certificates=[{
        "name": "string",
        "public_cert_data": "string",
    }],
    vpn_protocols=["string"],
    vpn_server_configuration_name="string")
const vpnServerConfigurationResource = new azure_native.network.VpnServerConfiguration("vpnServerConfigurationResource", {
    resourceGroupName: "string",
    radiusServerSecret: "string",
    radiusClientRootCertificates: [{
        name: "string",
        thumbprint: "string",
    }],
    radiusServers: [{
        radiusServerAddress: "string",
        radiusServerScore: 0,
        radiusServerSecret: "string",
    }],
    name: "string",
    configurationPolicyGroups: [{
        id: "string",
        isDefault: false,
        name: "string",
        policyMembers: [{
            attributeType: "string",
            attributeValue: "string",
            name: "string",
        }],
        priority: 0,
    }],
    radiusServerAddress: "string",
    radiusServerRootCertificates: [{
        name: "string",
        publicCertData: "string",
    }],
    tags: {
        string: "string",
    },
    location: "string",
    id: "string",
    aadAuthenticationParameters: {
        aadAudience: "string",
        aadIssuer: "string",
        aadTenant: "string",
    },
    vpnAuthenticationTypes: ["string"],
    vpnClientIpsecPolicies: [{
        dhGroup: "string",
        ikeEncryption: "string",
        ikeIntegrity: "string",
        ipsecEncryption: "string",
        ipsecIntegrity: "string",
        pfsGroup: "string",
        saDataSizeKilobytes: 0,
        saLifeTimeSeconds: 0,
    }],
    vpnClientRevokedCertificates: [{
        name: "string",
        thumbprint: "string",
    }],
    vpnClientRootCertificates: [{
        name: "string",
        publicCertData: "string",
    }],
    vpnProtocols: ["string"],
    vpnServerConfigurationName: "string",
});
type: azure-native:network:VpnServerConfiguration
properties:
    aadAuthenticationParameters:
        aadAudience: string
        aadIssuer: string
        aadTenant: string
    configurationPolicyGroups:
        - id: string
          isDefault: false
          name: string
          policyMembers:
            - attributeType: string
              attributeValue: string
              name: string
          priority: 0
    id: string
    location: string
    name: string
    radiusClientRootCertificates:
        - name: string
          thumbprint: string
    radiusServerAddress: string
    radiusServerRootCertificates:
        - name: string
          publicCertData: string
    radiusServerSecret: string
    radiusServers:
        - radiusServerAddress: string
          radiusServerScore: 0
          radiusServerSecret: string
    resourceGroupName: string
    tags:
        string: string
    vpnAuthenticationTypes:
        - string
    vpnClientIpsecPolicies:
        - dhGroup: string
          ikeEncryption: string
          ikeIntegrity: string
          ipsecEncryption: string
          ipsecIntegrity: string
          pfsGroup: string
          saDataSizeKilobytes: 0
          saLifeTimeSeconds: 0
    vpnClientRevokedCertificates:
        - name: string
          thumbprint: string
    vpnClientRootCertificates:
        - name: string
          publicCertData: string
    vpnProtocols:
        - string
    vpnServerConfigurationName: string
VpnServerConfiguration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VpnServerConfiguration resource accepts the following input properties:
- ResourceGroup stringName 
- The resource group name of the VpnServerConfiguration.
- AadAuthentication Pulumi.Parameters Azure Native. Network. Inputs. Aad Authentication Parameters 
- The set of aad vpn authentication parameters.
- ConfigurationPolicy List<Pulumi.Groups Azure Native. Network. Inputs. Vpn Server Configuration Policy Group> 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- Id string
- Resource ID.
- Location string
- Resource location.
- Name string
- The name of the VpnServerConfiguration that is unique within a resource group.
- RadiusClient List<Pulumi.Root Certificates Azure Native. Network. Inputs. Vpn Server Config Radius Client Root Certificate> 
- Radius client root certificate of VpnServerConfiguration.
- RadiusServer stringAddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- RadiusServer List<Pulumi.Root Certificates Azure Native. Network. Inputs. Vpn Server Config Radius Server Root Certificate> 
- Radius Server root certificate of VpnServerConfiguration.
- RadiusServer stringSecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- RadiusServers List<Pulumi.Azure Native. Network. Inputs. Radius Server> 
- Multiple Radius Server configuration for VpnServerConfiguration.
- Dictionary<string, string>
- Resource tags.
- VpnAuthentication List<Union<string, Pulumi.Types Azure Native. Network. Vpn Authentication Type>> 
- VPN authentication types for the VpnServerConfiguration.
- VpnClient List<Pulumi.Ipsec Policies Azure Native. Network. Inputs. Ipsec Policy> 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- VpnClient List<Pulumi.Revoked Certificates Azure Native. Network. Inputs. Vpn Server Config Vpn Client Revoked Certificate> 
- VPN client revoked certificate of VpnServerConfiguration.
- VpnClient List<Pulumi.Root Certificates Azure Native. Network. Inputs. Vpn Server Config Vpn Client Root Certificate> 
- VPN client root certificate of VpnServerConfiguration.
- VpnProtocols List<Union<string, Pulumi.Azure Native. Network. Vpn Gateway Tunneling Protocol>> 
- VPN protocols for the VpnServerConfiguration.
- VpnServer stringConfiguration Name 
- The name of the VpnServerConfiguration being created or updated.
- ResourceGroup stringName 
- The resource group name of the VpnServerConfiguration.
- AadAuthentication AadParameters Authentication Parameters Args 
- The set of aad vpn authentication parameters.
- ConfigurationPolicy []VpnGroups Server Configuration Policy Group Args 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- Id string
- Resource ID.
- Location string
- Resource location.
- Name string
- The name of the VpnServerConfiguration that is unique within a resource group.
- RadiusClient []VpnRoot Certificates Server Config Radius Client Root Certificate Args 
- Radius client root certificate of VpnServerConfiguration.
- RadiusServer stringAddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- RadiusServer []VpnRoot Certificates Server Config Radius Server Root Certificate Args 
- Radius Server root certificate of VpnServerConfiguration.
- RadiusServer stringSecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- RadiusServers []RadiusServer Args 
- Multiple Radius Server configuration for VpnServerConfiguration.
- map[string]string
- Resource tags.
- VpnAuthentication []stringTypes 
- VPN authentication types for the VpnServerConfiguration.
- VpnClient []IpsecIpsec Policies Policy Args 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- VpnClient []VpnRevoked Certificates Server Config Vpn Client Revoked Certificate Args 
- VPN client revoked certificate of VpnServerConfiguration.
- VpnClient []VpnRoot Certificates Server Config Vpn Client Root Certificate Args 
- VPN client root certificate of VpnServerConfiguration.
- VpnProtocols []string
- VPN protocols for the VpnServerConfiguration.
- VpnServer stringConfiguration Name 
- The name of the VpnServerConfiguration being created or updated.
- resourceGroup StringName 
- The resource group name of the VpnServerConfiguration.
- aadAuthentication AadParameters Authentication Parameters 
- The set of aad vpn authentication parameters.
- configurationPolicy List<VpnGroups Server Configuration Policy Group> 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- id String
- Resource ID.
- location String
- Resource location.
- name String
- The name of the VpnServerConfiguration that is unique within a resource group.
- radiusClient List<VpnRoot Certificates Server Config Radius Client Root Certificate> 
- Radius client root certificate of VpnServerConfiguration.
- radiusServer StringAddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- radiusServer List<VpnRoot Certificates Server Config Radius Server Root Certificate> 
- Radius Server root certificate of VpnServerConfiguration.
- radiusServer StringSecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- radiusServers List<RadiusServer> 
- Multiple Radius Server configuration for VpnServerConfiguration.
- Map<String,String>
- Resource tags.
- vpnAuthentication List<Either<String,VpnTypes Authentication Type>> 
- VPN authentication types for the VpnServerConfiguration.
- vpnClient List<IpsecIpsec Policies Policy> 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- vpnClient List<VpnRevoked Certificates Server Config Vpn Client Revoked Certificate> 
- VPN client revoked certificate of VpnServerConfiguration.
- vpnClient List<VpnRoot Certificates Server Config Vpn Client Root Certificate> 
- VPN client root certificate of VpnServerConfiguration.
- vpnProtocols List<Either<String,VpnGateway Tunneling Protocol>> 
- VPN protocols for the VpnServerConfiguration.
- vpnServer StringConfiguration Name 
- The name of the VpnServerConfiguration being created or updated.
- resourceGroup stringName 
- The resource group name of the VpnServerConfiguration.
- aadAuthentication AadParameters Authentication Parameters 
- The set of aad vpn authentication parameters.
- configurationPolicy VpnGroups Server Configuration Policy Group[] 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- id string
- Resource ID.
- location string
- Resource location.
- name string
- The name of the VpnServerConfiguration that is unique within a resource group.
- radiusClient VpnRoot Certificates Server Config Radius Client Root Certificate[] 
- Radius client root certificate of VpnServerConfiguration.
- radiusServer stringAddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- radiusServer VpnRoot Certificates Server Config Radius Server Root Certificate[] 
- Radius Server root certificate of VpnServerConfiguration.
- radiusServer stringSecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- radiusServers RadiusServer[] 
- Multiple Radius Server configuration for VpnServerConfiguration.
- {[key: string]: string}
- Resource tags.
- vpnAuthentication (string | VpnTypes Authentication Type)[] 
- VPN authentication types for the VpnServerConfiguration.
- vpnClient IpsecIpsec Policies Policy[] 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- vpnClient VpnRevoked Certificates Server Config Vpn Client Revoked Certificate[] 
- VPN client revoked certificate of VpnServerConfiguration.
- vpnClient VpnRoot Certificates Server Config Vpn Client Root Certificate[] 
- VPN client root certificate of VpnServerConfiguration.
- vpnProtocols (string | VpnGateway Tunneling Protocol)[] 
- VPN protocols for the VpnServerConfiguration.
- vpnServer stringConfiguration Name 
- The name of the VpnServerConfiguration being created or updated.
- resource_group_ strname 
- The resource group name of the VpnServerConfiguration.
- aad_authentication_ Aadparameters Authentication Parameters Args 
- The set of aad vpn authentication parameters.
- configuration_policy_ Sequence[Vpngroups Server Configuration Policy Group Args] 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- id str
- Resource ID.
- location str
- Resource location.
- name str
- The name of the VpnServerConfiguration that is unique within a resource group.
- radius_client_ Sequence[Vpnroot_ certificates Server Config Radius Client Root Certificate Args] 
- Radius client root certificate of VpnServerConfiguration.
- radius_server_ straddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- radius_server_ Sequence[Vpnroot_ certificates Server Config Radius Server Root Certificate Args] 
- Radius Server root certificate of VpnServerConfiguration.
- radius_server_ strsecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- radius_servers Sequence[RadiusServer Args] 
- Multiple Radius Server configuration for VpnServerConfiguration.
- Mapping[str, str]
- Resource tags.
- vpn_authentication_ Sequence[Union[str, Vpntypes Authentication Type]] 
- VPN authentication types for the VpnServerConfiguration.
- vpn_client_ Sequence[Ipsecipsec_ policies Policy Args] 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- vpn_client_ Sequence[Vpnrevoked_ certificates Server Config Vpn Client Revoked Certificate Args] 
- VPN client revoked certificate of VpnServerConfiguration.
- vpn_client_ Sequence[Vpnroot_ certificates Server Config Vpn Client Root Certificate Args] 
- VPN client root certificate of VpnServerConfiguration.
- vpn_protocols Sequence[Union[str, VpnGateway Tunneling Protocol]] 
- VPN protocols for the VpnServerConfiguration.
- vpn_server_ strconfiguration_ name 
- The name of the VpnServerConfiguration being created or updated.
- resourceGroup StringName 
- The resource group name of the VpnServerConfiguration.
- aadAuthentication Property MapParameters 
- The set of aad vpn authentication parameters.
- configurationPolicy List<Property Map>Groups 
- List of all VpnServerConfigurationPolicyGroups. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- id String
- Resource ID.
- location String
- Resource location.
- name String
- The name of the VpnServerConfiguration that is unique within a resource group.
- radiusClient List<Property Map>Root Certificates 
- Radius client root certificate of VpnServerConfiguration.
- radiusServer StringAddress 
- The radius server address property of the VpnServerConfiguration resource for point to site client connection.
- radiusServer List<Property Map>Root Certificates 
- Radius Server root certificate of VpnServerConfiguration.
- radiusServer StringSecret 
- The radius secret property of the VpnServerConfiguration resource for point to site client connection.
- radiusServers List<Property Map>
- Multiple Radius Server configuration for VpnServerConfiguration.
- Map<String>
- Resource tags.
- vpnAuthentication List<String | "Certificate" | "Radius" | "AAD">Types 
- VPN authentication types for the VpnServerConfiguration.
- vpnClient List<Property Map>Ipsec Policies 
- VpnClientIpsecPolicies for VpnServerConfiguration.
- vpnClient List<Property Map>Revoked Certificates 
- VPN client revoked certificate of VpnServerConfiguration.
- vpnClient List<Property Map>Root Certificates 
- VPN client root certificate of VpnServerConfiguration.
- vpnProtocols List<String | "IkeV2" | "Open VPN"> 
- VPN protocols for the VpnServerConfiguration.
- vpnServer StringConfiguration Name 
- The name of the VpnServerConfiguration being created or updated.
Outputs
All input properties are implicitly available as output properties. Additionally, the VpnServerConfiguration 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.
- P2SVpnGateways List<Pulumi.Azure Native. Network. Outputs. P2SVpn Gateway Response> 
- List of references to P2SVpnGateways.
- ProvisioningState string
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- 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.
- P2SVpnGateways []P2SVpnGateway Response 
- List of references to P2SVpnGateways.
- ProvisioningState string
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- 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.
- p2SVpnGateways List<P2SVpnGateway Response> 
- List of references to P2SVpnGateways.
- provisioningState String
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- 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.
- p2SVpnGateways P2SVpnGateway Response[] 
- List of references to P2SVpnGateways.
- provisioningState string
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- 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.
- p2_s_ Sequence[P2SVpnvpn_ gateways Gateway Response] 
- List of references to P2SVpnGateways.
- provisioning_state str
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- 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.
- p2SVpnGateways List<Property Map>
- List of references to P2SVpnGateways.
- provisioningState String
- The provisioning state of the VpnServerConfiguration resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
- type String
- Resource type.
Supporting Types
AadAuthenticationParameters, AadAuthenticationParametersArgs      
- AadAudience string
- AAD Vpn authentication parameter AAD audience.
- AadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- AadTenant string
- AAD Vpn authentication parameter AAD tenant.
- AadAudience string
- AAD Vpn authentication parameter AAD audience.
- AadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- AadTenant string
- AAD Vpn authentication parameter AAD tenant.
- aadAudience String
- AAD Vpn authentication parameter AAD audience.
- aadIssuer String
- AAD Vpn authentication parameter AAD issuer.
- aadTenant String
- AAD Vpn authentication parameter AAD tenant.
- aadAudience string
- AAD Vpn authentication parameter AAD audience.
- aadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- aadTenant string
- AAD Vpn authentication parameter AAD tenant.
- aad_audience str
- AAD Vpn authentication parameter AAD audience.
- aad_issuer str
- AAD Vpn authentication parameter AAD issuer.
- aad_tenant str
- AAD Vpn authentication parameter AAD tenant.
- aadAudience String
- AAD Vpn authentication parameter AAD audience.
- aadIssuer String
- AAD Vpn authentication parameter AAD issuer.
- aadTenant String
- AAD Vpn authentication parameter AAD tenant.
AadAuthenticationParametersResponse, AadAuthenticationParametersResponseArgs        
- AadAudience string
- AAD Vpn authentication parameter AAD audience.
- AadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- AadTenant string
- AAD Vpn authentication parameter AAD tenant.
- AadAudience string
- AAD Vpn authentication parameter AAD audience.
- AadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- AadTenant string
- AAD Vpn authentication parameter AAD tenant.
- aadAudience String
- AAD Vpn authentication parameter AAD audience.
- aadIssuer String
- AAD Vpn authentication parameter AAD issuer.
- aadTenant String
- AAD Vpn authentication parameter AAD tenant.
- aadAudience string
- AAD Vpn authentication parameter AAD audience.
- aadIssuer string
- AAD Vpn authentication parameter AAD issuer.
- aadTenant string
- AAD Vpn authentication parameter AAD tenant.
- aad_audience str
- AAD Vpn authentication parameter AAD audience.
- aad_issuer str
- AAD Vpn authentication parameter AAD issuer.
- aad_tenant str
- AAD Vpn authentication parameter AAD tenant.
- aadAudience String
- AAD Vpn authentication parameter AAD audience.
- aadIssuer String
- AAD Vpn authentication parameter AAD issuer.
- aadTenant String
- AAD Vpn authentication parameter AAD tenant.
AddressSpaceResponse, AddressSpaceResponseArgs      
- AddressPrefixes List<string>
- A list of address blocks reserved for this virtual network in CIDR notation.
- AddressPrefixes []string
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
- addressPrefixes 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.
- addressPrefixes List<String>
- A list of address blocks reserved for this virtual network in CIDR notation.
DhGroup, DhGroupArgs    
- None
- None
- DHGroup1
- DHGroup1
- DHGroup2
- DHGroup2
- DHGroup14
- DHGroup14
- DHGroup2048
- DHGroup2048
- ECP256
- ECP256
- ECP384
- ECP384
- DHGroup24
- DHGroup24
- DhGroup None 
- None
- DhGroup DHGroup1 
- DHGroup1
- DhGroup DHGroup2 
- DHGroup2
- DhGroup DHGroup14 
- DHGroup14
- DhGroup DHGroup2048 
- DHGroup2048
- DhGroup ECP256 
- ECP256
- DhGroup ECP384 
- ECP384
- DhGroup 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
IkeEncryption, IkeEncryptionArgs    
- DES
- DES
- DES3
- DES3
- AES128
- AES128
- AES192
- AES192
- AES256
- AES256
- GCMAES256
- GCMAES256
- GCMAES128
- GCMAES128
- IkeEncryption DES 
- DES
- IkeEncryption DES3 
- DES3
- IkeEncryption AES128 
- AES128
- IkeEncryption AES192 
- AES192
- IkeEncryption AES256 
- AES256
- IkeEncryption GCMAES256 
- GCMAES256
- IkeEncryption 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
- IkeIntegrity MD5 
- MD5
- IkeIntegrity SHA1 
- SHA1
- IkeIntegrity SHA256 
- SHA256
- IkeIntegrity SHA384 
- SHA384
- IkeIntegrity GCMAES256 
- GCMAES256
- IkeIntegrity 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
- IpsecEncryption None 
- None
- IpsecEncryption DES 
- DES
- IpsecEncryption DES3 
- DES3
- IpsecEncryption AES128 
- AES128
- IpsecEncryption AES192 
- AES192
- IpsecEncryption AES256 
- AES256
- IpsecEncryption GCMAES128 
- GCMAES128
- IpsecEncryption GCMAES192 
- GCMAES192
- IpsecEncryption 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
- IpsecIntegrity MD5 
- MD5
- IpsecIntegrity SHA1 
- SHA1
- IpsecIntegrity SHA256 
- SHA256
- IpsecIntegrity GCMAES128 
- GCMAES128
- IpsecIntegrity GCMAES192 
- GCMAES192
- IpsecIntegrity 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    
- DhGroup string | Pulumi.Azure Native. Network. Dh Group 
- The DH Group used in IKE Phase 1 for initial SA.
- IkeEncryption string | Pulumi.Azure Native. Network. Ike Encryption 
- The IKE encryption algorithm (IKE phase 2).
- IkeIntegrity string | Pulumi.Azure Native. Network. Ike Integrity 
- The IKE integrity algorithm (IKE phase 2).
- IpsecEncryption string | Pulumi.Azure Native. Network. Ipsec Encryption 
- The IPSec encryption algorithm (IKE phase 1).
- IpsecIntegrity string | Pulumi.Azure Native. Network. Ipsec Integrity 
- The IPSec integrity algorithm (IKE phase 1).
- PfsGroup string | Pulumi.Azure Native. Network. Pfs Group 
- The Pfs Group used in IKE Phase 2 for new child SA.
- SaData 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.
- SaLife intTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- DhGroup string | DhGroup 
- The DH Group used in IKE Phase 1 for initial SA.
- IkeEncryption string | IkeEncryption 
- The IKE encryption algorithm (IKE phase 2).
- IkeIntegrity string | IkeIntegrity 
- The IKE integrity algorithm (IKE phase 2).
- IpsecEncryption string | IpsecEncryption 
- The IPSec encryption algorithm (IKE phase 1).
- IpsecIntegrity string | IpsecIntegrity 
- The IPSec integrity algorithm (IKE phase 1).
- PfsGroup string | PfsGroup 
- The Pfs Group used in IKE Phase 2 for new child SA.
- SaData 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.
- SaLife intTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dhGroup String | DhGroup 
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption String | IkeEncryption 
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity String | IkeIntegrity 
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption String | IpsecEncryption 
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity String | IpsecIntegrity 
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup String | PfsGroup 
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife IntegerTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dhGroup string | DhGroup 
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption string | IkeEncryption 
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity string | IkeIntegrity 
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption string | IpsecEncryption 
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity string | IpsecIntegrity 
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup string | PfsGroup 
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife 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.
- dhGroup String | "None" | "DHGroup1" | "DHGroup2" | "DHGroup14" | "DHGroup2048" | "ECP256" | "ECP384" | "DHGroup24"
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption String | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES256" | "GCMAES128"
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity String | "MD5" | "SHA1" | "SHA256" | "SHA384" | "GCMAES256" | "GCMAES128"
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption String | "None" | "DES" | "DES3" | "AES128" | "AES192" | "AES256" | "GCMAES128" | "GCMAES192" | "GCMAES256"
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity String | "MD5" | "SHA1" | "SHA256" | "GCMAES128" | "GCMAES192" | "GCMAES256"
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup String | "None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM"
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife 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      
- DhGroup string
- The DH Group used in IKE Phase 1 for initial SA.
- IkeEncryption string
- The IKE encryption algorithm (IKE phase 2).
- IkeIntegrity string
- The IKE integrity algorithm (IKE phase 2).
- IpsecEncryption string
- The IPSec encryption algorithm (IKE phase 1).
- IpsecIntegrity string
- The IPSec integrity algorithm (IKE phase 1).
- PfsGroup string
- The Pfs Group used in IKE Phase 2 for new child SA.
- SaData 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.
- SaLife intTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- DhGroup string
- The DH Group used in IKE Phase 1 for initial SA.
- IkeEncryption string
- The IKE encryption algorithm (IKE phase 2).
- IkeIntegrity string
- The IKE integrity algorithm (IKE phase 2).
- IpsecEncryption string
- The IPSec encryption algorithm (IKE phase 1).
- IpsecIntegrity string
- The IPSec integrity algorithm (IKE phase 1).
- PfsGroup string
- The Pfs Group used in IKE Phase 2 for new child SA.
- SaData 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.
- SaLife intTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dhGroup String
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption String
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity String
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption String
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity String
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup String
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife IntegerTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
- dhGroup string
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption string
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity string
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption string
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity string
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup string
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife 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.
- dhGroup String
- The DH Group used in IKE Phase 1 for initial SA.
- ikeEncryption String
- The IKE encryption algorithm (IKE phase 2).
- ikeIntegrity String
- The IKE integrity algorithm (IKE phase 2).
- ipsecEncryption String
- The IPSec encryption algorithm (IKE phase 1).
- ipsecIntegrity String
- The IPSec integrity algorithm (IKE phase 1).
- pfsGroup String
- The Pfs Group used in IKE Phase 2 for new child SA.
- saData 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.
- saLife NumberTime Seconds 
- The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.
P2SConnectionConfigurationResponse, P2SConnectionConfigurationResponseArgs      
- ConfigurationPolicy List<Pulumi.Group Associations Azure Native. Network. Inputs. Sub Resource Response> 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- PreviousConfiguration List<Pulumi.Policy Group Associations Azure Native. Network. Inputs. Vpn Server Configuration Policy Group Response> 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- ProvisioningState string
- The provisioning state of the P2SConnectionConfiguration resource.
- EnableInternet boolSecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- RoutingConfiguration Pulumi.Azure Native. Network. Inputs. Routing Configuration Response 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- VpnClient Pulumi.Address Pool Azure Native. Network. Inputs. Address Space Response 
- The reference to the address space resource which represents Address space for P2S VpnClient.
- ConfigurationPolicy []SubGroup Associations Resource Response 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- PreviousConfiguration []VpnPolicy Group Associations Server Configuration Policy Group Response 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- ProvisioningState string
- The provisioning state of the P2SConnectionConfiguration resource.
- EnableInternet boolSecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- RoutingConfiguration RoutingConfiguration Response 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- VpnClient AddressAddress Pool Space Response 
- The reference to the address space resource which represents Address space for P2S VpnClient.
- configurationPolicy List<SubGroup Associations Resource Response> 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- previousConfiguration List<VpnPolicy Group Associations Server Configuration Policy Group Response> 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- provisioningState String
- The provisioning state of the P2SConnectionConfiguration resource.
- enableInternet BooleanSecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- routingConfiguration RoutingConfiguration Response 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- vpnClient AddressAddress Pool Space Response 
- The reference to the address space resource which represents Address space for P2S VpnClient.
- configurationPolicy SubGroup Associations Resource Response[] 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- previousConfiguration VpnPolicy Group Associations Server Configuration Policy Group Response[] 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- provisioningState string
- The provisioning state of the P2SConnectionConfiguration resource.
- enableInternet booleanSecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- routingConfiguration RoutingConfiguration Response 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- vpnClient AddressAddress Pool Space Response 
- The reference to the address space resource which represents Address space for P2S VpnClient.
- configuration_policy_ Sequence[Subgroup_ associations Resource Response] 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- previous_configuration_ Sequence[Vpnpolicy_ group_ associations Server Configuration Policy Group Response] 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- provisioning_state str
- The provisioning state of the P2SConnectionConfiguration resource.
- enable_internet_ boolsecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- routing_configuration RoutingConfiguration Response 
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- vpn_client_ Addressaddress_ pool Space Response 
- The reference to the address space resource which represents Address space for P2S VpnClient.
- configurationPolicy List<Property Map>Group Associations 
- List of Configuration Policy Groups that this P2SConnectionConfiguration is attached to.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- previousConfiguration List<Property Map>Policy Group Associations 
- List of previous Configuration Policy Groups that this P2SConnectionConfiguration was attached to.
- provisioningState String
- The provisioning state of the P2SConnectionConfiguration resource.
- enableInternet BooleanSecurity 
- Flag indicating whether the enable internet security flag is turned on for the P2S Connections or not.
- 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.
- routingConfiguration Property Map
- The Routing Configuration indicating the associated and propagated route tables on this connection.
- vpnClient Property MapAddress Pool 
- The reference to the address space resource which represents Address space for P2S VpnClient.
P2SVpnGatewayResponse, P2SVpnGatewayResponseArgs      
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Location string
- Resource location.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the P2S VPN gateway resource.
- Type string
- Resource type.
- VpnClient Pulumi.Connection Health Azure Native. Network. Inputs. Vpn Client Connection Health Response 
- All P2S VPN clients' connection health status.
- CustomDns List<string>Servers 
- List of all customer specified DNS servers IP addresses.
- Id string
- Resource ID.
- IsRouting boolPreference Internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- P2SConnectionConfigurations List<Pulumi.Azure Native. Network. Inputs. P2SConnection Configuration Response> 
- List of all p2s connection configurations of the gateway.
- Dictionary<string, string>
- Resource tags.
- VirtualHub Pulumi.Azure Native. Network. Inputs. Sub Resource Response 
- The VirtualHub to which the gateway belongs.
- VpnGateway intScale Unit 
- The scale unit for this p2s vpn gateway.
- VpnServer Pulumi.Configuration Azure Native. Network. Inputs. Sub Resource Response 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Location string
- Resource location.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the P2S VPN gateway resource.
- Type string
- Resource type.
- VpnClient VpnConnection Health Client Connection Health Response 
- All P2S VPN clients' connection health status.
- CustomDns []stringServers 
- List of all customer specified DNS servers IP addresses.
- Id string
- Resource ID.
- IsRouting boolPreference Internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- P2SConnectionConfigurations []P2SConnectionConfiguration Response 
- List of all p2s connection configurations of the gateway.
- map[string]string
- Resource tags.
- VirtualHub SubResource Response 
- The VirtualHub to which the gateway belongs.
- VpnGateway intScale Unit 
- The scale unit for this p2s vpn gateway.
- VpnServer SubConfiguration Resource Response 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- location String
- Resource location.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the P2S VPN gateway resource.
- type String
- Resource type.
- vpnClient VpnConnection Health Client Connection Health Response 
- All P2S VPN clients' connection health status.
- customDns List<String>Servers 
- List of all customer specified DNS servers IP addresses.
- id String
- Resource ID.
- isRouting BooleanPreference Internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- p2SConnectionConfigurations List<P2SConnectionConfiguration Response> 
- List of all p2s connection configurations of the gateway.
- Map<String,String>
- Resource tags.
- virtualHub SubResource Response 
- The VirtualHub to which the gateway belongs.
- vpnGateway IntegerScale Unit 
- The scale unit for this p2s vpn gateway.
- vpnServer SubConfiguration Resource Response 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- location string
- Resource location.
- name string
- Resource name.
- provisioningState string
- The provisioning state of the P2S VPN gateway resource.
- type string
- Resource type.
- vpnClient VpnConnection Health Client Connection Health Response 
- All P2S VPN clients' connection health status.
- customDns string[]Servers 
- List of all customer specified DNS servers IP addresses.
- id string
- Resource ID.
- isRouting booleanPreference Internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- p2SConnectionConfigurations P2SConnectionConfiguration Response[] 
- List of all p2s connection configurations of the gateway.
- {[key: string]: string}
- Resource tags.
- virtualHub SubResource Response 
- The VirtualHub to which the gateway belongs.
- vpnGateway numberScale Unit 
- The scale unit for this p2s vpn gateway.
- vpnServer SubConfiguration Resource Response 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- location str
- Resource location.
- name str
- Resource name.
- provisioning_state str
- The provisioning state of the P2S VPN gateway resource.
- type str
- Resource type.
- vpn_client_ Vpnconnection_ health Client Connection Health Response 
- All P2S VPN clients' connection health status.
- custom_dns_ Sequence[str]servers 
- List of all customer specified DNS servers IP addresses.
- id str
- Resource ID.
- is_routing_ boolpreference_ internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- p2_s_ Sequence[P2SConnectionconnection_ configurations Configuration Response] 
- List of all p2s connection configurations of the gateway.
- Mapping[str, str]
- Resource tags.
- virtual_hub SubResource Response 
- The VirtualHub to which the gateway belongs.
- vpn_gateway_ intscale_ unit 
- The scale unit for this p2s vpn gateway.
- vpn_server_ Subconfiguration Resource Response 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- location String
- Resource location.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the P2S VPN gateway resource.
- type String
- Resource type.
- vpnClient Property MapConnection Health 
- All P2S VPN clients' connection health status.
- customDns List<String>Servers 
- List of all customer specified DNS servers IP addresses.
- id String
- Resource ID.
- isRouting BooleanPreference Internet 
- Enable Routing Preference property for the Public IP Interface of the P2SVpnGateway.
- p2SConnectionConfigurations List<Property Map>
- List of all p2s connection configurations of the gateway.
- Map<String>
- Resource tags.
- virtualHub Property Map
- The VirtualHub to which the gateway belongs.
- vpnGateway NumberScale Unit 
- The scale unit for this p2s vpn gateway.
- vpnServer Property MapConfiguration 
- The VpnServerConfiguration to which the p2sVpnGateway is attached to.
PfsGroup, PfsGroupArgs    
- None
- None
- PFS1
- PFS1
- PFS2
- PFS2
- PFS2048
- PFS2048
- ECP256
- ECP256
- ECP384
- ECP384
- PFS24
- PFS24
- PFS14
- PFS14
- PFSMM
- PFSMM
- PfsGroup None 
- None
- PfsGroup PFS1 
- PFS1
- PfsGroup PFS2 
- PFS2
- PfsGroup PFS2048 
- PFS2048
- PfsGroup ECP256 
- ECP256
- PfsGroup ECP384 
- ECP384
- PfsGroup PFS24 
- PFS24
- PfsGroup PFS14 
- PFS14
- PfsGroup 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
PropagatedRouteTableResponse, PropagatedRouteTableResponseArgs        
- Ids
List<Pulumi.Azure Native. Network. Inputs. Sub Resource Response> 
- The list of resource ids of all the RouteTables.
- Labels List<string>
- The list of labels.
- Ids
[]SubResource Response 
- The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<SubResource Response> 
- The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
SubResource Response[] 
- The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[SubResource Response] 
- The list of resource ids of all the RouteTables.
- labels Sequence[str]
- The list of labels.
- ids List<Property Map>
- The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
RadiusServer, RadiusServerArgs    
- RadiusServer stringAddress 
- The address of this radius server.
- RadiusServer doubleScore 
- The initial score assigned to this radius server.
- RadiusServer stringSecret 
- The secret used for this radius server.
- RadiusServer stringAddress 
- The address of this radius server.
- RadiusServer float64Score 
- The initial score assigned to this radius server.
- RadiusServer stringSecret 
- The secret used for this radius server.
- radiusServer StringAddress 
- The address of this radius server.
- radiusServer DoubleScore 
- The initial score assigned to this radius server.
- radiusServer StringSecret 
- The secret used for this radius server.
- radiusServer stringAddress 
- The address of this radius server.
- radiusServer numberScore 
- The initial score assigned to this radius server.
- radiusServer 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.
- radiusServer StringAddress 
- The address of this radius server.
- radiusServer NumberScore 
- The initial score assigned to this radius server.
- radiusServer StringSecret 
- The secret used for this radius server.
RadiusServerResponse, RadiusServerResponseArgs      
- RadiusServer stringAddress 
- The address of this radius server.
- RadiusServer doubleScore 
- The initial score assigned to this radius server.
- RadiusServer stringSecret 
- The secret used for this radius server.
- RadiusServer stringAddress 
- The address of this radius server.
- RadiusServer float64Score 
- The initial score assigned to this radius server.
- RadiusServer stringSecret 
- The secret used for this radius server.
- radiusServer StringAddress 
- The address of this radius server.
- radiusServer DoubleScore 
- The initial score assigned to this radius server.
- radiusServer StringSecret 
- The secret used for this radius server.
- radiusServer stringAddress 
- The address of this radius server.
- radiusServer numberScore 
- The initial score assigned to this radius server.
- radiusServer 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.
- radiusServer StringAddress 
- The address of this radius server.
- radiusServer NumberScore 
- The initial score assigned to this radius server.
- radiusServer StringSecret 
- The secret used for this radius server.
RoutingConfigurationResponse, RoutingConfigurationResponseArgs      
- AssociatedRoute Pulumi.Table Azure Native. Network. Inputs. Sub Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute Pulumi.Map Azure Native. Network. Inputs. Sub Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table Response 
- The list of RouteTables to advertise the routes to.
- VnetRoutes Pulumi.Azure Native. Network. Inputs. Vnet Route Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- AssociatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- InboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- OutboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- PropagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- VnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute SubTable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute SubMap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute SubMap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute PropagatedTables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnetRoutes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associated_route_ Subtable Resource Response 
- The resource id RouteTable associated with this RoutingConfiguration.
- inbound_route_ Submap Resource Response 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outbound_route_ Submap Resource Response 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagated_route_ Propagatedtables Route Table Response 
- The list of RouteTables to advertise the routes to.
- vnet_routes VnetRoute Response 
- List of routes that control routing from VirtualHub into a virtual network connection.
- associatedRoute Property MapTable 
- The resource id RouteTable associated with this RoutingConfiguration.
- inboundRoute Property MapMap 
- The resource id of the RouteMap associated with this RoutingConfiguration for inbound learned routes.
- outboundRoute Property MapMap 
- The resource id of theRouteMap associated with this RoutingConfiguration for outbound advertised routes.
- propagatedRoute Property MapTables 
- The list of RouteTables to advertise the routes to.
- vnetRoutes Property Map
- List of routes that control routing from VirtualHub into a virtual network connection.
StaticRouteResponse, StaticRouteResponseArgs      
- AddressPrefixes List<string>
- List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- NextHop stringIp Address 
- The ip address of the next hop.
- AddressPrefixes []string
- List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- NextHop stringIp Address 
- The ip address of the next hop.
- addressPrefixes List<String>
- List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- nextHop StringIp Address 
- The ip address of the next hop.
- addressPrefixes string[]
- List of all address prefixes.
- name string
- The name of the StaticRoute that is unique within a VnetRoute.
- nextHop stringIp Address 
- The ip address of the next hop.
- address_prefixes Sequence[str]
- List of all address prefixes.
- name str
- The name of the StaticRoute that is unique within a VnetRoute.
- next_hop_ strip_ address 
- The ip address of the next hop.
- addressPrefixes List<String>
- List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- nextHop StringIp Address 
- The ip address of the next hop.
StaticRoutesConfigResponse, StaticRoutesConfigResponseArgs        
- PropagateStatic boolRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- VnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- PropagateStatic boolRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- VnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic BooleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal StringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic booleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal stringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagate_static_ boolroutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnet_local_ strroute_ override_ criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
- propagateStatic BooleanRoutes 
- Boolean indicating whether static routes on this connection are automatically propagate to route tables which this connection propagates to.
- vnetLocal StringRoute Override Criteria 
- Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
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.
VnetRouteResponse, VnetRouteResponseArgs      
- BgpConnections List<Pulumi.Azure Native. Network. Inputs. Sub Resource Response> 
- The list of references to HubBgpConnection objects.
- StaticRoutes List<Pulumi.Azure Native. Network. Inputs. Static Route Response> 
- List of all Static Routes.
- StaticRoutes Pulumi.Config Azure Native. Network. Inputs. Static Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- BgpConnections []SubResource Response 
- The list of references to HubBgpConnection objects.
- StaticRoutes []StaticRoute Response 
- List of all Static Routes.
- StaticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgpConnections List<SubResource Response> 
- The list of references to HubBgpConnection objects.
- staticRoutes List<StaticRoute Response> 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgpConnections SubResource Response[] 
- The list of references to HubBgpConnection objects.
- staticRoutes StaticRoute Response[] 
- List of all Static Routes.
- staticRoutes StaticConfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgp_connections Sequence[SubResource Response] 
- The list of references to HubBgpConnection objects.
- static_routes Sequence[StaticRoute Response] 
- List of all Static Routes.
- static_routes_ Staticconfig Routes Config Response 
- Configuration for static routes on this HubVnetConnection.
- bgpConnections List<Property Map>
- The list of references to HubBgpConnection objects.
- staticRoutes List<Property Map>
- List of all Static Routes.
- staticRoutes Property MapConfig 
- Configuration for static routes on this HubVnetConnection.
VpnAuthenticationType, VpnAuthenticationTypeArgs      
- Certificate
- Certificate
- Radius
- Radius
- AAD
- AAD
- VpnAuthentication Type Certificate 
- Certificate
- VpnAuthentication Type Radius 
- Radius
- VpnAuthentication 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
VpnClientConnectionHealthResponse, VpnClientConnectionHealthResponseArgs          
- TotalEgress doubleBytes Transferred 
- Total of the Egress Bytes Transferred in this connection.
- TotalIngress doubleBytes Transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- AllocatedIp List<string>Addresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- VpnClient intConnections Count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
- TotalEgress float64Bytes Transferred 
- Total of the Egress Bytes Transferred in this connection.
- TotalIngress float64Bytes Transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- AllocatedIp []stringAddresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- VpnClient intConnections Count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
- totalEgress DoubleBytes Transferred 
- Total of the Egress Bytes Transferred in this connection.
- totalIngress DoubleBytes Transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- allocatedIp List<String>Addresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- vpnClient IntegerConnections Count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
- totalEgress numberBytes Transferred 
- Total of the Egress Bytes Transferred in this connection.
- totalIngress numberBytes Transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- allocatedIp string[]Addresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- vpnClient numberConnections Count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
- total_egress_ floatbytes_ transferred 
- Total of the Egress Bytes Transferred in this connection.
- total_ingress_ floatbytes_ transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- allocated_ip_ Sequence[str]addresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- vpn_client_ intconnections_ count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
- totalEgress NumberBytes Transferred 
- Total of the Egress Bytes Transferred in this connection.
- totalIngress NumberBytes Transferred 
- Total of the Ingress Bytes Transferred in this P2S Vpn connection.
- allocatedIp List<String>Addresses 
- List of allocated ip addresses to the connected p2s vpn clients.
- vpnClient NumberConnections Count 
- The total of p2s vpn clients connected at this time to this P2SVpnGateway.
VpnGatewayTunnelingProtocol, VpnGatewayTunnelingProtocolArgs        
- IkeV2 
- IkeV2
- OpenVPN 
- OpenVPN
- VpnGateway Tunneling Protocol Ike V2 
- IkeV2
- VpnGateway Tunneling Protocol Open VPN 
- OpenVPN
- IkeV2 
- IkeV2
- OpenVPN 
- OpenVPN
- IkeV2 
- IkeV2
- OpenVPN 
- OpenVPN
- IKE_V2
- IkeV2
- OPEN_VPN
- OpenVPN
- "IkeV2" 
- IkeV2
- "OpenVPN" 
- OpenVPN
VpnPolicyMemberAttributeType, VpnPolicyMemberAttributeTypeArgs          
- CertificateGroup Id 
- CertificateGroupId
- AADGroupId 
- AADGroupId
- RadiusAzure Group Id 
- RadiusAzureGroupId
- VpnPolicy Member Attribute Type Certificate Group Id 
- CertificateGroupId
- VpnPolicy Member Attribute Type AADGroup Id 
- AADGroupId
- VpnPolicy Member Attribute Type Radius Azure Group Id 
- RadiusAzureGroupId
- CertificateGroup Id 
- CertificateGroupId
- AADGroupId 
- AADGroupId
- RadiusAzure Group Id 
- RadiusAzureGroupId
- CertificateGroup Id 
- CertificateGroupId
- AADGroupId 
- AADGroupId
- RadiusAzure Group Id 
- RadiusAzureGroupId
- CERTIFICATE_GROUP_ID
- CertificateGroupId
- AAD_GROUP_ID
- AADGroupId
- RADIUS_AZURE_GROUP_ID
- RadiusAzureGroupId
- "CertificateGroup Id" 
- CertificateGroupId
- "AADGroupId" 
- AADGroupId
- "RadiusAzure Group Id" 
- RadiusAzureGroupId
VpnServerConfigRadiusClientRootCertificate, VpnServerConfigRadiusClientRootCertificateArgs              
- Name string
- The certificate name.
- Thumbprint string
- The Radius client root certificate thumbprint.
- Name string
- The certificate name.
- Thumbprint string
- The Radius client root certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The Radius client root certificate thumbprint.
- name string
- The certificate name.
- thumbprint string
- The Radius client root certificate thumbprint.
- name str
- The certificate name.
- thumbprint str
- The Radius client root certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The Radius client root certificate thumbprint.
VpnServerConfigRadiusClientRootCertificateResponse, VpnServerConfigRadiusClientRootCertificateResponseArgs                
- Name string
- The certificate name.
- Thumbprint string
- The Radius client root certificate thumbprint.
- Name string
- The certificate name.
- Thumbprint string
- The Radius client root certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The Radius client root certificate thumbprint.
- name string
- The certificate name.
- thumbprint string
- The Radius client root certificate thumbprint.
- name str
- The certificate name.
- thumbprint str
- The Radius client root certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The Radius client root certificate thumbprint.
VpnServerConfigRadiusServerRootCertificate, VpnServerConfigRadiusServerRootCertificateArgs              
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
- name string
- The certificate name.
- publicCert stringData 
- The certificate public data.
- name str
- The certificate name.
- public_cert_ strdata 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
VpnServerConfigRadiusServerRootCertificateResponse, VpnServerConfigRadiusServerRootCertificateResponseArgs                
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
- name string
- The certificate name.
- publicCert stringData 
- The certificate public data.
- name str
- The certificate name.
- public_cert_ strdata 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
VpnServerConfigVpnClientRevokedCertificate, VpnServerConfigVpnClientRevokedCertificateArgs              
- Name string
- The certificate name.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- Name string
- The certificate name.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The revoked VPN client certificate thumbprint.
- name string
- The certificate name.
- thumbprint string
- The revoked VPN client certificate thumbprint.
- name str
- The certificate name.
- thumbprint str
- The revoked VPN client certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The revoked VPN client certificate thumbprint.
VpnServerConfigVpnClientRevokedCertificateResponse, VpnServerConfigVpnClientRevokedCertificateResponseArgs                
- Name string
- The certificate name.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- Name string
- The certificate name.
- Thumbprint string
- The revoked VPN client certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The revoked VPN client certificate thumbprint.
- name string
- The certificate name.
- thumbprint string
- The revoked VPN client certificate thumbprint.
- name str
- The certificate name.
- thumbprint str
- The revoked VPN client certificate thumbprint.
- name String
- The certificate name.
- thumbprint String
- The revoked VPN client certificate thumbprint.
VpnServerConfigVpnClientRootCertificate, VpnServerConfigVpnClientRootCertificateArgs              
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
- name string
- The certificate name.
- publicCert stringData 
- The certificate public data.
- name str
- The certificate name.
- public_cert_ strdata 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
VpnServerConfigVpnClientRootCertificateResponse, VpnServerConfigVpnClientRootCertificateResponseArgs                
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- Name string
- The certificate name.
- PublicCert stringData 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
- name string
- The certificate name.
- publicCert stringData 
- The certificate public data.
- name str
- The certificate name.
- public_cert_ strdata 
- The certificate public data.
- name String
- The certificate name.
- publicCert StringData 
- The certificate public data.
VpnServerConfigurationPolicyGroup, VpnServerConfigurationPolicyGroupArgs          
- Id string
- Resource ID.
- IsDefault bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- PolicyMembers List<Pulumi.Azure Native. Network. Inputs. Vpn Server Configuration Policy Group Member> 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- Priority int
- Priority for VpnServerConfigurationPolicyGroup.
- Id string
- Resource ID.
- IsDefault bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- PolicyMembers []VpnServer Configuration Policy Group Member 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- Priority int
- Priority for VpnServerConfigurationPolicyGroup.
- id String
- Resource ID.
- isDefault Boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers List<VpnServer Configuration Policy Group Member> 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority Integer
- Priority for VpnServerConfigurationPolicyGroup.
- id string
- Resource ID.
- isDefault boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers VpnServer Configuration Policy Group Member[] 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority number
- Priority for VpnServerConfigurationPolicyGroup.
- id str
- Resource ID.
- is_default bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policy_members Sequence[VpnServer Configuration Policy Group Member] 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority int
- Priority for VpnServerConfigurationPolicyGroup.
- id String
- Resource ID.
- isDefault Boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers List<Property Map>
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority Number
- Priority for VpnServerConfigurationPolicyGroup.
VpnServerConfigurationPolicyGroupMember, VpnServerConfigurationPolicyGroupMemberArgs            
- AttributeType string | Pulumi.Azure Native. Network. Vpn Policy Member Attribute Type 
- The Vpn Policy member attribute type.
- AttributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- Name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- AttributeType string | VpnPolicy Member Attribute Type 
- The Vpn Policy member attribute type.
- AttributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- Name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType String | VpnPolicy Member Attribute Type 
- The Vpn Policy member attribute type.
- attributeValue String
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name String
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType string | VpnPolicy Member Attribute Type 
- The Vpn Policy member attribute type.
- attributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- attribute_type str | VpnPolicy Member Attribute Type 
- The Vpn Policy member attribute type.
- attribute_value str
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name str
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType String | "CertificateGroup Id" | "AADGroup Id" | "Radius Azure Group Id" 
- The Vpn Policy member attribute type.
- attributeValue String
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name String
- Name of the VpnServerConfigurationPolicyGroupMember.
VpnServerConfigurationPolicyGroupMemberResponse, VpnServerConfigurationPolicyGroupMemberResponseArgs              
- AttributeType string
- The Vpn Policy member attribute type.
- AttributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- Name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- AttributeType string
- The Vpn Policy member attribute type.
- AttributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- Name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType String
- The Vpn Policy member attribute type.
- attributeValue String
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name String
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType string
- The Vpn Policy member attribute type.
- attributeValue string
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name string
- Name of the VpnServerConfigurationPolicyGroupMember.
- attribute_type str
- The Vpn Policy member attribute type.
- attribute_value str
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name str
- Name of the VpnServerConfigurationPolicyGroupMember.
- attributeType String
- The Vpn Policy member attribute type.
- attributeValue String
- The value of Attribute used for this VpnServerConfigurationPolicyGroupMember.
- name String
- Name of the VpnServerConfigurationPolicyGroupMember.
VpnServerConfigurationPolicyGroupResponse, VpnServerConfigurationPolicyGroupResponseArgs            
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- P2SConnectionConfigurations List<Pulumi.Azure Native. Network. Inputs. Sub Resource Response> 
- List of references to P2SConnectionConfigurations.
- ProvisioningState string
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- Type string
- Resource type.
- Id string
- Resource ID.
- IsDefault bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- PolicyMembers List<Pulumi.Azure Native. Network. Inputs. Vpn Server Configuration Policy Group Member Response> 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- Priority int
- Priority for VpnServerConfigurationPolicyGroup.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- P2SConnectionConfigurations []SubResource Response 
- List of references to P2SConnectionConfigurations.
- ProvisioningState string
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- Type string
- Resource type.
- Id string
- Resource ID.
- IsDefault bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- PolicyMembers []VpnServer Configuration Policy Group Member Response 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- Priority int
- Priority for VpnServerConfigurationPolicyGroup.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- p2SConnectionConfigurations List<SubResource Response> 
- List of references to P2SConnectionConfigurations.
- provisioningState String
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- type String
- Resource type.
- id String
- Resource ID.
- isDefault Boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers List<VpnServer Configuration Policy Group Member Response> 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority Integer
- Priority for VpnServerConfigurationPolicyGroup.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- p2SConnectionConfigurations SubResource Response[] 
- List of references to P2SConnectionConfigurations.
- provisioningState string
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- type string
- Resource type.
- id string
- Resource ID.
- isDefault boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers VpnServer Configuration Policy Group Member Response[] 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority number
- Priority for VpnServerConfigurationPolicyGroup.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- p2_s_ Sequence[Subconnection_ configurations Resource Response] 
- List of references to P2SConnectionConfigurations.
- provisioning_state str
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- type str
- Resource type.
- id str
- Resource ID.
- is_default bool
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policy_members Sequence[VpnServer Configuration Policy Group Member Response] 
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority int
- Priority for VpnServerConfigurationPolicyGroup.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- p2SConnectionConfigurations List<Property Map>
- List of references to P2SConnectionConfigurations.
- provisioningState String
- The provisioning state of the VpnServerConfigurationPolicyGroup resource.
- type String
- Resource type.
- id String
- Resource ID.
- isDefault Boolean
- Shows if this is a Default VpnServerConfigurationPolicyGroup or not.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- policyMembers List<Property Map>
- Multiple PolicyMembers for VpnServerConfigurationPolicyGroup.
- priority Number
- Priority for VpnServerConfigurationPolicyGroup.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:VpnServerConfiguration vpnServerConfiguration1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/vpnServerConfigurations/{vpnServerConfigurationName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0