Microsoft.Network localNetworkGateways 2016-12-01
이 문서의 내용
Bicep resource definition
The localNetworkGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.Network/localNetworkGateways resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/localNetworkGateways@2016-12-01' = {
etag: 'string'
location: 'string'
name: 'string'
properties: {
bgpSettings: {
asn: int
bgpPeeringAddress: 'string'
peerWeight: int
}
gatewayIpAddress: 'string'
localNetworkAddressSpace: {
addressPrefixes: [
'string'
]
}
resourceGuid: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property values
AddressSpace
Name
Description
Value
addressPrefixes
A list of address blocks reserved for this virtual network in CIDR notation.
string[]
BgpSettings
Name
Description
Value
asn
The BGP speaker's ASN.
int
bgpPeeringAddress
The BGP peering address and BGP identifier of this BGP speaker.
string
peerWeight
The weight added to routes learned from this BGP speaker.
int
Name
Description
Value
bgpSettings
Local network gateway's BGP speaker settings.
BgpSettings
gatewayIpAddress
IP address of local network gateway.
string
localNetworkAddressSpace
Local network site address space.
AddressSpace
resourceGuid
The resource GUID property of the LocalNetworkGateway resource.
string
Microsoft.Network/localNetworkGateways
Name
Description
Value
etag
A unique read-only string that changes whenever the resource is updated.
string
location
Resource location.
string
name
The resource name
string (required)
properties
LocalNetworkGateway properties
LocalNetworkGatewayPropertiesFormat (required)
tags
Resource tags
Dictionary of tag names and values. See Tags in templates
Quickstart samples
The following quickstart samples deploy this resource type.
Bicep File
Description
Site-to-Site VPN with active-active VPN Gateways with BGP
This template allows you to deploy a site-to-site VPN between two VNets with VPN Gateways in configuration active-active with BGP. Each Azure VPN Gateway resolves the FQDN of the remote peers to determine the public IP of the remote VPN Gateway. Template runs as expected in Azure regions with availability zones.
ARM template resource definition
The localNetworkGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.Network/localNetworkGateways resource, add the following JSON to your template.
{
"type": "Microsoft.Network/localNetworkGateways",
"apiVersion": "2016-12-01",
"name": "string",
"etag": "string",
"location": "string",
"properties": {
"bgpSettings": {
"asn": "int",
"bgpPeeringAddress": "string",
"peerWeight": "int"
},
"gatewayIpAddress": "string",
"localNetworkAddressSpace": {
"addressPrefixes": [ "string" ]
},
"resourceGuid": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
AddressSpace
Name
Description
Value
addressPrefixes
A list of address blocks reserved for this virtual network in CIDR notation.
string[]
BgpSettings
Name
Description
Value
asn
The BGP speaker's ASN.
int
bgpPeeringAddress
The BGP peering address and BGP identifier of this BGP speaker.
string
peerWeight
The weight added to routes learned from this BGP speaker.
int
Name
Description
Value
bgpSettings
Local network gateway's BGP speaker settings.
BgpSettings
gatewayIpAddress
IP address of local network gateway.
string
localNetworkAddressSpace
Local network site address space.
AddressSpace
resourceGuid
The resource GUID property of the LocalNetworkGateway resource.
string
Microsoft.Network/localNetworkGateways
Name
Description
Value
apiVersion
The api version
'2016-12-01'
etag
A unique read-only string that changes whenever the resource is updated.
string
location
Resource location.
string
name
The resource name
string (required)
properties
LocalNetworkGateway properties
LocalNetworkGatewayPropertiesFormat (required)
tags
Resource tags
Dictionary of tag names and values. See Tags in templates
type
The resource type
'Microsoft.Network/localNetworkGateways'
Quickstart templates
The following quickstart templates deploy this resource type.
The localNetworkGateways resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log .
To create a Microsoft.Network/localNetworkGateways resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/localNetworkGateways@2016-12-01"
name = "string"
etag = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
bgpSettings = {
asn = int
bgpPeeringAddress = "string"
peerWeight = int
}
gatewayIpAddress = "string"
localNetworkAddressSpace = {
addressPrefixes = [
"string"
]
}
resourceGuid = "string"
}
})
}
Property values
AddressSpace
Name
Description
Value
addressPrefixes
A list of address blocks reserved for this virtual network in CIDR notation.
string[]
BgpSettings
Name
Description
Value
asn
The BGP speaker's ASN.
int
bgpPeeringAddress
The BGP peering address and BGP identifier of this BGP speaker.
string
peerWeight
The weight added to routes learned from this BGP speaker.
int
Name
Description
Value
bgpSettings
Local network gateway's BGP speaker settings.
BgpSettings
gatewayIpAddress
IP address of local network gateway.
string
localNetworkAddressSpace
Local network site address space.
AddressSpace
resourceGuid
The resource GUID property of the LocalNetworkGateway resource.
string
Microsoft.Network/localNetworkGateways
Name
Description
Value
etag
A unique read-only string that changes whenever the resource is updated.
string
location
Resource location.
string
name
The resource name
string (required)
properties
LocalNetworkGateway properties
LocalNetworkGatewayPropertiesFormat (required)
tags
Resource tags
Dictionary of tag names and values.
type
The resource type
"Microsoft.Network/localNetworkGateways@2016-12-01"