We recommend using Azure Native.
azure.network.VpnSite
Explore with Pulumi AI
Manages a VPN Site.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-rg",
location: "West Europe",
});
const exampleVirtualWan = new azure.network.VirtualWan("example", {
name: "example-vwan",
resourceGroupName: example.name,
location: example.location,
});
const exampleVpnSite = new azure.network.VpnSite("example", {
name: "site1",
resourceGroupName: example.name,
location: example.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 = azure.core.ResourceGroup("example",
name="example-rg",
location="West Europe")
example_virtual_wan = azure.network.VirtualWan("example",
name="example-vwan",
resource_group_name=example.name,
location=example.location)
example_vpn_site = azure.network.VpnSite("example",
name="site1",
resource_group_name=example.name,
location=example.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",
)])
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-rg"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVirtualWan, err := network.NewVirtualWan(ctx, "example", &network.VirtualWanArgs{
Name: pulumi.String("example-vwan"),
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
_, err = network.NewVpnSite(ctx, "example", &network.VpnSiteArgs{
Name: pulumi.String("site1"),
ResourceGroupName: example.Name,
Location: example.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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-rg",
Location = "West Europe",
});
var exampleVirtualWan = new Azure.Network.VirtualWan("example", new()
{
Name = "example-vwan",
ResourceGroupName = example.Name,
Location = example.Location,
});
var exampleVpnSite = new Azure.Network.VpnSite("example", new()
{
Name = "site1",
ResourceGroupName = example.Name,
Location = example.Location,
VirtualWanId = exampleVirtualWan.Id,
AddressCidrs = new[]
{
"10.0.0.0/24",
},
Links = new[]
{
new Azure.Network.Inputs.VpnSiteLinkArgs
{
Name = "link1",
IpAddress = "10.0.0.1",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualWan;
import com.pulumi.azure.network.VirtualWanArgs;
import com.pulumi.azure.network.VpnSite;
import com.pulumi.azure.network.VpnSiteArgs;
import com.pulumi.azure.network.inputs.VpnSiteLinkArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-rg")
.location("West Europe")
.build());
var exampleVirtualWan = new VirtualWan("exampleVirtualWan", VirtualWanArgs.builder()
.name("example-vwan")
.resourceGroupName(example.name())
.location(example.location())
.build());
var exampleVpnSite = new VpnSite("exampleVpnSite", VpnSiteArgs.builder()
.name("site1")
.resourceGroupName(example.name())
.location(example.location())
.virtualWanId(exampleVirtualWan.id())
.addressCidrs("10.0.0.0/24")
.links(VpnSiteLinkArgs.builder()
.name("link1")
.ipAddress("10.0.0.1")
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-rg
location: West Europe
exampleVirtualWan:
type: azure:network:VirtualWan
name: example
properties:
name: example-vwan
resourceGroupName: ${example.name}
location: ${example.location}
exampleVpnSite:
type: azure:network:VpnSite
name: example
properties:
name: site1
resourceGroupName: ${example.name}
location: ${example.location}
virtualWanId: ${exampleVirtualWan.id}
addressCidrs:
- 10.0.0.0/24
links:
- name: link1
ipAddress: 10.0.0.1
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,
o365_policy: Optional[VpnSiteO365PolicyArgs] = 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",
O365Policy = new Azure.Network.Inputs.VpnSiteO365PolicyArgs
{
TrafficCategory = new Azure.Network.Inputs.VpnSiteO365PolicyTrafficCategoryArgs
{
AllowEndpointEnabled = false,
DefaultEndpointEnabled = false,
OptimizeEndpointEnabled = false,
},
},
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"),
O365Policy: &network.VpnSiteO365PolicyArgs{
TrafficCategory: &network.VpnSiteO365PolicyTrafficCategoryArgs{
AllowEndpointEnabled: pulumi.Bool(false),
DefaultEndpointEnabled: pulumi.Bool(false),
OptimizeEndpointEnabled: pulumi.Bool(false),
},
},
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")
.o365Policy(VpnSiteO365PolicyArgs.builder()
.trafficCategory(VpnSiteO365PolicyTrafficCategoryArgs.builder()
.allowEndpointEnabled(false)
.defaultEndpointEnabled(false)
.optimizeEndpointEnabled(false)
.build())
.build())
.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=[azure.network.VpnSiteLinkArgs(
name="string",
bgp=azure.network.VpnSiteLinkBgpArgs(
asn=0,
peering_address="string",
),
fqdn="string",
id="string",
ip_address="string",
provider_name="string",
speed_in_mbps=0,
)],
location="string",
name="string",
o365_policy=azure.network.VpnSiteO365PolicyArgs(
traffic_category=azure.network.VpnSiteO365PolicyTrafficCategoryArgs(
allow_endpoint_enabled=False,
default_endpoint_enabled=False,
optimize_endpoint_enabled=False,
),
),
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",
o365Policy: {
trafficCategory: {
allowEndpointEnabled: false,
defaultEndpointEnabled: false,
optimizeEndpointEnabled: false,
},
},
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
o365Policy:
trafficCategory:
allowEndpointEnabled: false
defaultEndpointEnabled: false
optimizeEndpointEnabled: false
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
The VpnSite resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Virtual
Wan stringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- Address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- Device
Model string - The model of the VPN device.
- Device
Vendor string - The name of the VPN device vendor.
- Links
List<Vpn
Site Link> - 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.
- O365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - Dictionary<string, string>
- A mapping of tags which should be assigned to the VPN Site.
- Resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Virtual
Wan stringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- Address
Cidrs []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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- Device
Model string - The model of the VPN device.
- Device
Vendor string - The name of the VPN device vendor.
- Links
[]Vpn
Site Link Args - 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.
- O365Policy
Vpn
Site O365Policy Args - An
o365_policy
block as defined below. - map[string]string
- A mapping of tags which should be assigned to the VPN Site.
- resource
Group StringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- virtual
Wan StringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model String - The model of the VPN device.
- device
Vendor String - The name of the VPN device vendor.
- links
List<Vpn
Site Link> - 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.
- o365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - Map<String,String>
- A mapping of tags which should be assigned to the VPN Site.
- resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- virtual
Wan stringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model string - The model of the VPN device.
- device
Vendor string - The name of the VPN device vendor.
- links
Vpn
Site Link[] - 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.
- o365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - {[key: string]: string}
- A mapping of tags which should be assigned to the VPN Site.
- resource_
group_ strname - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- virtual_
wan_ strid - 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device_
model str - The model of the VPN device.
- device_
vendor str - The name of the VPN device vendor.
- links
Sequence[Vpn
Site Link Args] - 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.
- o365_
policy VpnSite O365Policy Args - An
o365_policy
block as defined below. - Mapping[str, str]
- A mapping of tags which should be assigned to the VPN Site.
- resource
Group StringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- virtual
Wan StringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model String - The model of the VPN device.
- device
Vendor 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.
- o365Policy Property Map
- An
o365_policy
block as defined below. - 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,
o365_policy: Optional[VpnSiteO365PolicyArgs] = 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- Device
Model string - The model of the VPN device.
- Device
Vendor string - The name of the VPN device vendor.
- Links
List<Vpn
Site Link> - 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.
- O365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - Resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the VPN Site.
- Virtual
Wan stringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- Address
Cidrs []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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- Device
Model string - The model of the VPN device.
- Device
Vendor string - The name of the VPN device vendor.
- Links
[]Vpn
Site Link Args - 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.
- O365Policy
Vpn
Site O365Policy Args - An
o365_policy
block as defined below. - Resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- map[string]string
- A mapping of tags which should be assigned to the VPN Site.
- Virtual
Wan stringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model String - The model of the VPN device.
- device
Vendor String - The name of the VPN device vendor.
- links
List<Vpn
Site Link> - 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.
- o365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - resource
Group StringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the VPN Site.
- virtual
Wan StringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model string - The model of the VPN device.
- device
Vendor string - The name of the VPN device vendor.
- links
Vpn
Site Link[] - 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.
- o365Policy
Vpn
Site O365Policy - An
o365_policy
block as defined below. - resource
Group stringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the VPN Site.
- virtual
Wan stringId - 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device_
model str - The model of the VPN device.
- device_
vendor str - The name of the VPN device vendor.
- links
Sequence[Vpn
Site Link Args] - 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.
- o365_
policy VpnSite O365Policy Args - An
o365_policy
block as defined below. - resource_
group_ strname - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the VPN Site.
- virtual_
wan_ strid - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
- address
Cidrs 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.
NOTE: The
address_cidrs
has to be set when thelink.bgp
isn't specified.- device
Model String - The model of the VPN device.
- device
Vendor 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.
- o365Policy Property Map
- An
o365_policy
block as defined below. - resource
Group StringName - The name of the Resource Group where the VPN Site should exist. Changing this forces a new VPN Site to be created.
- Map<String>
- A mapping of tags which should be assigned to the VPN Site.
- virtual
Wan StringId - The ID of the Virtual Wan where this VPN site resides in. Changing this forces a new VPN Site to be created.
Supporting Types
VpnSiteLink, VpnSiteLinkArgs
- Name string
- The name which should be used for this VPN Site Link.
- Bgp
Vpn
Site Link Bgp A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- Fqdn string
- The FQDN of this VPN Site Link.
- Id string
- The ID of the VPN Site Link.
- Ip
Address string The IP address of this VPN Site Link.
NOTE: Either
fqdn
orip_address
should be specified.- Provider
Name string - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - Speed
In intMbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
- Name string
- The name which should be used for this VPN Site Link.
- Bgp
Vpn
Site Link Bgp A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- Fqdn string
- The FQDN of this VPN Site Link.
- Id string
- The ID of the VPN Site Link.
- Ip
Address string The IP address of this VPN Site Link.
NOTE: Either
fqdn
orip_address
should be specified.- Provider
Name string - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - Speed
In intMbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
- name String
- The name which should be used for this VPN Site Link.
- bgp
Vpn
Site Link Bgp A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- fqdn String
- The FQDN of this VPN Site Link.
- id String
- The ID of the VPN Site Link.
- ip
Address String The IP address of this VPN Site Link.
NOTE: Either
fqdn
orip_address
should be specified.- provider
Name String - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - speed
In IntegerMbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
- name string
- The name which should be used for this VPN Site Link.
- bgp
Vpn
Site Link Bgp A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- fqdn string
- The FQDN of this VPN Site Link.
- id string
- The ID of the VPN Site Link.
- ip
Address string The IP address of this VPN Site Link.
NOTE: Either
fqdn
orip_address
should be specified.- provider
Name string - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - speed
In numberMbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
- name str
- The name which should be used for this VPN Site Link.
- bgp
Vpn
Site Link Bgp A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- 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.
NOTE: Either
fqdn
orip_address
should be specified.- provider_
name str - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - speed_
in_ intmbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
- name String
- The name which should be used for this VPN Site Link.
- bgp Property Map
A
bgp
block as defined above.NOTE: The
link.bgp
has to be set when theaddress_cidrs
isn't specified.- fqdn String
- The FQDN of this VPN Site Link.
- id String
- The ID of the VPN Site Link.
- ip
Address String The IP address of this VPN Site Link.
NOTE: Either
fqdn
orip_address
should be specified.- provider
Name String - The name of the physical link at the VPN Site. Example:
ATT
,Verizon
. - speed
In NumberMbps - The speed of the VPN device at the branch location in unit of mbps. Defaults to
0
.
VpnSiteLinkBgp, VpnSiteLinkBgpArgs
- Asn int
- The BGP speaker's ASN.
- Peering
Address string - The BGP peering IP address.
- Asn int
- The BGP speaker's ASN.
- Peering
Address string - The BGP peering IP address.
- asn Integer
- The BGP speaker's ASN.
- peering
Address String - The BGP peering IP address.
- asn number
- The BGP speaker's ASN.
- peering
Address 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.
- peering
Address String - The BGP peering IP address.
VpnSiteO365Policy, VpnSiteO365PolicyArgs
- Traffic
Category VpnSite O365Policy Traffic Category - A
traffic_category
block as defined above.
- Traffic
Category VpnSite O365Policy Traffic Category - A
traffic_category
block as defined above.
- traffic
Category VpnSite O365Policy Traffic Category - A
traffic_category
block as defined above.
- traffic
Category VpnSite O365Policy Traffic Category - A
traffic_category
block as defined above.
- traffic_
category VpnSite O365Policy Traffic Category - A
traffic_category
block as defined above.
- traffic
Category Property Map - A
traffic_category
block as defined above.
VpnSiteO365PolicyTrafficCategory, VpnSiteO365PolicyTrafficCategoryArgs
- Allow
Endpoint boolEnabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - Default
Endpoint boolEnabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - Optimize
Endpoint boolEnabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
- Allow
Endpoint boolEnabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - Default
Endpoint boolEnabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - Optimize
Endpoint boolEnabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
- allow
Endpoint BooleanEnabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - default
Endpoint BooleanEnabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - optimize
Endpoint BooleanEnabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
- allow
Endpoint booleanEnabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - default
Endpoint booleanEnabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - optimize
Endpoint booleanEnabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
- allow_
endpoint_ boolenabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - default_
endpoint_ boolenabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - optimize_
endpoint_ boolenabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
- allow
Endpoint BooleanEnabled - Is allow endpoint enabled? The
Allow
endpoint is required for connectivity to specific O365 services and features, but are not as sensitive to network performance and latency as other endpoint types. Defaults tofalse
. - default
Endpoint BooleanEnabled - Is default endpoint enabled? The
Default
endpoint represents O365 services and dependencies that do not require any optimization, and can be treated by customer networks as normal Internet bound traffic. Defaults tofalse
. - optimize
Endpoint BooleanEnabled - Is optimize endpoint enabled? The
Optimize
endpoint is required for connectivity to every O365 service and represents the O365 scenario that is the most sensitive to network performance, latency, and availability. Defaults tofalse
.
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.