1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. network
  6. VpnSite

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a VPN Site.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleVirtualWan = new Azure.Network.VirtualWan("exampleVirtualWan", new Azure.Network.VirtualWanArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
            });
            var exampleVpnSite = new Azure.Network.VpnSite("exampleVpnSite", new Azure.Network.VpnSiteArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                VirtualWanId = exampleVirtualWan.Id,
                AddressCidrs = 
                {
                    "10.0.0.0/24",
                },
                Links = 
                {
                    new Azure.Network.Inputs.VpnSiteLinkArgs
                    {
                        Name = "link1",
                        IpAddress = "10.0.0.1",
                    },
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleVirtualWan, err := network.NewVirtualWan(ctx, "exampleVirtualWan", &network.VirtualWanArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = network.NewVpnSite(ctx, "exampleVpnSite", &network.VpnSiteArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			VirtualWanId:      exampleVirtualWan.ID(),
    			AddressCidrs: pulumi.StringArray{
    				pulumi.String("10.0.0.0/24"),
    			},
    			Links: network.VpnSiteLinkArray{
    				&network.VpnSiteLinkArgs{
    					Name:      pulumi.String("link1"),
    					IpAddress: pulumi.String("10.0.0.1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleVirtualWan = new azure.network.VirtualWan("exampleVirtualWan", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
    });
    const exampleVpnSite = new azure.network.VpnSite("exampleVpnSite", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        virtualWanId: exampleVirtualWan.id,
        addressCidrs: ["10.0.0.0/24"],
        links: [{
            name: "link1",
            ipAddress: "10.0.0.1",
        }],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_virtual_wan = azure.network.VirtualWan("exampleVirtualWan",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location)
    example_vpn_site = azure.network.VpnSite("exampleVpnSite",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        virtual_wan_id=example_virtual_wan.id,
        address_cidrs=["10.0.0.0/24"],
        links=[azure.network.VpnSiteLinkArgs(
            name="link1",
            ip_address="10.0.0.1",
        )])
    

    Example coming soon!

    Create VpnSite Resource

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

    Constructor syntax

    new VpnSite(name: string, args: VpnSiteArgs, opts?: CustomResourceOptions);
    @overload
    def VpnSite(resource_name: str,
                args: VpnSiteArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def VpnSite(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                virtual_wan_id: Optional[str] = None,
                address_cidrs: Optional[Sequence[str]] = None,
                device_model: Optional[str] = None,
                device_vendor: Optional[str] = None,
                links: Optional[Sequence[VpnSiteLinkArgs]] = None,
                location: Optional[str] = None,
                name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewVpnSite(ctx *Context, name string, args VpnSiteArgs, opts ...ResourceOption) (*VpnSite, error)
    public VpnSite(string name, VpnSiteArgs args, CustomResourceOptions? opts = null)
    public VpnSite(String name, VpnSiteArgs args)
    public VpnSite(String name, VpnSiteArgs args, CustomResourceOptions options)
    
    type: azure:network:VpnSite
    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 VpnSiteArgs
    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 VpnSiteArgs
    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 VpnSiteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VpnSiteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VpnSiteArgs
    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 vpnSiteResource = new Azure.Network.VpnSite("vpnSiteResource", new()
    {
        ResourceGroupName = "string",
        VirtualWanId = "string",
        AddressCidrs = new[]
        {
            "string",
        },
        DeviceModel = "string",
        DeviceVendor = "string",
        Links = new[]
        {
            new Azure.Network.Inputs.VpnSiteLinkArgs
            {
                Name = "string",
                Bgp = new Azure.Network.Inputs.VpnSiteLinkBgpArgs
                {
                    Asn = 0,
                    PeeringAddress = "string",
                },
                Fqdn = "string",
                Id = "string",
                IpAddress = "string",
                ProviderName = "string",
                SpeedInMbps = 0,
            },
        },
        Location = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := network.NewVpnSite(ctx, "vpnSiteResource", &network.VpnSiteArgs{
    	ResourceGroupName: pulumi.String("string"),
    	VirtualWanId:      pulumi.String("string"),
    	AddressCidrs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DeviceModel:  pulumi.String("string"),
    	DeviceVendor: pulumi.String("string"),
    	Links: network.VpnSiteLinkArray{
    		&network.VpnSiteLinkArgs{
    			Name: pulumi.String("string"),
    			Bgp: &network.VpnSiteLinkBgpArgs{
    				Asn:            pulumi.Int(0),
    				PeeringAddress: pulumi.String("string"),
    			},
    			Fqdn:         pulumi.String("string"),
    			Id:           pulumi.String("string"),
    			IpAddress:    pulumi.String("string"),
    			ProviderName: pulumi.String("string"),
    			SpeedInMbps:  pulumi.Int(0),
    		},
    	},
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var vpnSiteResource = new VpnSite("vpnSiteResource", VpnSiteArgs.builder()
        .resourceGroupName("string")
        .virtualWanId("string")
        .addressCidrs("string")
        .deviceModel("string")
        .deviceVendor("string")
        .links(VpnSiteLinkArgs.builder()
            .name("string")
            .bgp(VpnSiteLinkBgpArgs.builder()
                .asn(0)
                .peeringAddress("string")
                .build())
            .fqdn("string")
            .id("string")
            .ipAddress("string")
            .providerName("string")
            .speedInMbps(0)
            .build())
        .location("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .build());
    
    vpn_site_resource = azure.network.VpnSite("vpnSiteResource",
        resource_group_name="string",
        virtual_wan_id="string",
        address_cidrs=["string"],
        device_model="string",
        device_vendor="string",
        links=[{
            "name": "string",
            "bgp": {
                "asn": 0,
                "peering_address": "string",
            },
            "fqdn": "string",
            "id": "string",
            "ip_address": "string",
            "provider_name": "string",
            "speed_in_mbps": 0,
        }],
        location="string",
        name="string",
        tags={
            "string": "string",
        })
    
    const vpnSiteResource = new azure.network.VpnSite("vpnSiteResource", {
        resourceGroupName: "string",
        virtualWanId: "string",
        addressCidrs: ["string"],
        deviceModel: "string",
        deviceVendor: "string",
        links: [{
            name: "string",
            bgp: {
                asn: 0,
                peeringAddress: "string",
            },
            fqdn: "string",
            id: "string",
            ipAddress: "string",
            providerName: "string",
            speedInMbps: 0,
        }],
        location: "string",
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:network:VpnSite
    properties:
        addressCidrs:
            - string
        deviceModel: string
        deviceVendor: string
        links:
            - bgp:
                asn: 0
                peeringAddress: string
              fqdn: string
              id: string
              ipAddress: string
              name: string
              providerName: string
              speedInMbps: 0
        location: string
        name: string
        resourceGroupName: string
        tags:
            string: string
        virtualWanId: string
    

    VpnSite 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 VpnSite resource accepts the following input properties:

    ResourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    VirtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    AddressCidrs List<string>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    DeviceModel string
    The model of the VPN device.
    DeviceVendor string
    The name of the VPN device vendor.
    Links List<VpnSiteLink>
    One or more link blocks as defined below.
    Location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the VPN Site.
    ResourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    VirtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    AddressCidrs []string
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    DeviceModel string
    The model of the VPN device.
    DeviceVendor string
    The name of the VPN device vendor.
    Links []VpnSiteLinkArgs
    One or more link blocks as defined below.
    Location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the VPN Site.
    resourceGroupName String
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    virtualWanId String
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs List<String>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel String
    The model of the VPN device.
    deviceVendor String
    The name of the VPN device vendor.
    links List<VpnSiteLink>
    One or more link blocks as defined below.
    location String
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name String
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the VPN Site.
    resourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    virtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs string[]
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel string
    The model of the VPN device.
    deviceVendor string
    The name of the VPN device vendor.
    links VpnSiteLink[]
    One or more link blocks as defined below.
    location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the VPN Site.
    resource_group_name str
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    virtual_wan_id str
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    address_cidrs Sequence[str]
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    device_model str
    The model of the VPN device.
    device_vendor str
    The name of the VPN device vendor.
    links Sequence[VpnSiteLinkArgs]
    One or more link blocks as defined below.
    location str
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name str
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the VPN Site.
    resourceGroupName String
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    virtualWanId String
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs List<String>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel String
    The model of the VPN device.
    deviceVendor String
    The name of the VPN device vendor.
    links List<Property Map>
    One or more link blocks as defined below.
    location String
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name String
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the VPN Site.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing VpnSite Resource

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

    public static get(name: string, id: Input<ID>, state?: VpnSiteState, opts?: CustomResourceOptions): VpnSite
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address_cidrs: Optional[Sequence[str]] = None,
            device_model: Optional[str] = None,
            device_vendor: Optional[str] = None,
            links: Optional[Sequence[VpnSiteLinkArgs]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            virtual_wan_id: Optional[str] = None) -> VpnSite
    func GetVpnSite(ctx *Context, name string, id IDInput, state *VpnSiteState, opts ...ResourceOption) (*VpnSite, error)
    public static VpnSite Get(string name, Input<string> id, VpnSiteState? state, CustomResourceOptions? opts = null)
    public static VpnSite get(String name, Output<String> id, VpnSiteState state, CustomResourceOptions options)
    resources:  _:    type: azure:network:VpnSite    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AddressCidrs List<string>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    DeviceModel string
    The model of the VPN device.
    DeviceVendor string
    The name of the VPN device vendor.
    Links List<VpnSiteLink>
    One or more link blocks as defined below.
    Location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    ResourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the VPN Site.
    VirtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    AddressCidrs []string
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    DeviceModel string
    The model of the VPN device.
    DeviceVendor string
    The name of the VPN device vendor.
    Links []VpnSiteLinkArgs
    One or more link blocks as defined below.
    Location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    ResourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the VPN Site.
    VirtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs List<String>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel String
    The model of the VPN device.
    deviceVendor String
    The name of the VPN device vendor.
    links List<VpnSiteLink>
    One or more link blocks as defined below.
    location String
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name String
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    resourceGroupName String
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the VPN Site.
    virtualWanId String
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs string[]
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel string
    The model of the VPN device.
    deviceVendor string
    The name of the VPN device vendor.
    links VpnSiteLink[]
    One or more link blocks as defined below.
    location string
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name string
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    resourceGroupName string
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the VPN Site.
    virtualWanId string
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    address_cidrs Sequence[str]
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    device_model str
    The model of the VPN device.
    device_vendor str
    The name of the VPN device vendor.
    links Sequence[VpnSiteLinkArgs]
    One or more link blocks as defined below.
    location str
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name str
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    resource_group_name str
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the VPN Site.
    virtual_wan_id str
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
    addressCidrs List<String>
    Specifies a list of IP address CIDRs that are located on your on-premises site. Traffic destined for these address spaces is routed to your local site.
    deviceModel String
    The model of the VPN device.
    deviceVendor String
    The name of the VPN device vendor.
    links List<Property Map>
    One or more link blocks as defined below.
    location String
    The Azure Region where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    name String
    The name which should be used for this VPN Site. Changing this forces a new VPN Site to be created.
    resourceGroupName String
    The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the VPN Site.
    virtualWanId String
    The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.

    Supporting Types

    Name string
    The name which should be used for this VPN Site Link.
    Bgp VpnSiteLinkBgp
    A bgp block as defined above.
    Fqdn string
    The FQDN of this VPN Site Link.
    Id string
    The ID of the VPN Site Link.
    IpAddress string
    The IP address of this VPN Site Link.
    ProviderName string
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    SpeedInMbps int
    The speed of the VPN device at the branch location in unit of mbps.
    Name string
    The name which should be used for this VPN Site Link.
    Bgp VpnSiteLinkBgp
    A bgp block as defined above.
    Fqdn string
    The FQDN of this VPN Site Link.
    Id string
    The ID of the VPN Site Link.
    IpAddress string
    The IP address of this VPN Site Link.
    ProviderName string
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    SpeedInMbps int
    The speed of the VPN device at the branch location in unit of mbps.
    name String
    The name which should be used for this VPN Site Link.
    bgp VpnSiteLinkBgp
    A bgp block as defined above.
    fqdn String
    The FQDN of this VPN Site Link.
    id String
    The ID of the VPN Site Link.
    ipAddress String
    The IP address of this VPN Site Link.
    providerName String
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    speedInMbps Integer
    The speed of the VPN device at the branch location in unit of mbps.
    name string
    The name which should be used for this VPN Site Link.
    bgp VpnSiteLinkBgp
    A bgp block as defined above.
    fqdn string
    The FQDN of this VPN Site Link.
    id string
    The ID of the VPN Site Link.
    ipAddress string
    The IP address of this VPN Site Link.
    providerName string
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    speedInMbps number
    The speed of the VPN device at the branch location in unit of mbps.
    name str
    The name which should be used for this VPN Site Link.
    bgp VpnSiteLinkBgp
    A bgp block as defined above.
    fqdn str
    The FQDN of this VPN Site Link.
    id str
    The ID of the VPN Site Link.
    ip_address str
    The IP address of this VPN Site Link.
    provider_name str
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    speed_in_mbps int
    The speed of the VPN device at the branch location in unit of mbps.
    name String
    The name which should be used for this VPN Site Link.
    bgp Property Map
    A bgp block as defined above.
    fqdn String
    The FQDN of this VPN Site Link.
    id String
    The ID of the VPN Site Link.
    ipAddress String
    The IP address of this VPN Site Link.
    providerName String
    The name of the physical link at the VPN Site. Example: ATT, Verizon.
    speedInMbps Number
    The speed of the VPN device at the branch location in unit of mbps.

    VpnSiteLinkBgp, VpnSiteLinkBgpArgs

    Asn int
    The BGP speaker's ASN.
    PeeringAddress string
    The BGP peering ip address.
    Asn int
    The BGP speaker's ASN.
    PeeringAddress string
    The BGP peering ip address.
    asn Integer
    The BGP speaker's ASN.
    peeringAddress String
    The BGP peering ip address.
    asn number
    The BGP speaker's ASN.
    peeringAddress string
    The BGP peering ip address.
    asn int
    The BGP speaker's ASN.
    peering_address str
    The BGP peering ip address.
    asn Number
    The BGP speaker's ASN.
    peeringAddress String
    The BGP peering ip address.

    Import

    VPN Sites can be imported using the resource id, e.g.

     $ pulumi import azure:network/vpnSite:VpnSite example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/vpnSites/site1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial