Compartilhar via


Microsoft.Network localNetworkGateways 2015-05-01-preview

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.

Resource format

To create a Microsoft.Network/localNetworkGateways resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Network/localNetworkGateways@2015-05-01-preview' = {
  etag: 'string'
  location: 'string'
  name: 'string'
  properties: {
    gatewayIpAddress: 'string'
    localNetworkAddressSpace: {
      addressPrefixes: [
        'string'
      ]
    }
    provisioningState: 'string'
    resourceGuid: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property values

AddressSpace

Name Description Value
addressPrefixes Gets or sets List of address blocks reserved for this virtual network in CIDR notation string[]

LocalNetworkGatewayPropertiesFormat

Name Description Value
gatewayIpAddress IP address of local network gateway. string
localNetworkAddressSpace Local network site Address space AddressSpace
provisioningState Gets or sets Provisioning state of the LocalNetworkGateway resource Updating/Deleting/Failed string
resourceGuid Gets or sets resource guid property of the LocalNetworkGateway resource string

Microsoft.Network/localNetworkGateways

Name Description Value
etag Gets a unique read-only string that changes whenever the resource is updated string
location Resource location string (required)
name The resource name string (required)
properties LocalNetworkGateway properties LocalNetworkGatewayPropertiesFormat
tags Resource tags Dictionary of tag names and values. See Tags in templates

ResourceTags

Name Description Value

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.

Resource format

To create a Microsoft.Network/localNetworkGateways resource, add the following JSON to your template.

{
  "type": "Microsoft.Network/localNetworkGateways",
  "apiVersion": "2015-05-01-preview",
  "name": "string",
  "etag": "string",
  "location": "string",
  "properties": {
    "gatewayIpAddress": "string",
    "localNetworkAddressSpace": {
      "addressPrefixes": [ "string" ]
    },
    "provisioningState": "string",
    "resourceGuid": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property values

AddressSpace

Name Description Value
addressPrefixes Gets or sets List of address blocks reserved for this virtual network in CIDR notation string[]

LocalNetworkGatewayPropertiesFormat

Name Description Value
gatewayIpAddress IP address of local network gateway. string
localNetworkAddressSpace Local network site Address space AddressSpace
provisioningState Gets or sets Provisioning state of the LocalNetworkGateway resource Updating/Deleting/Failed string
resourceGuid Gets or sets resource guid property of the LocalNetworkGateway resource string

Microsoft.Network/localNetworkGateways

Name Description Value
apiVersion The api version '2015-05-01-preview'
etag Gets a unique read-only string that changes whenever the resource is updated string
location Resource location string (required)
name The resource name string (required)
properties LocalNetworkGateway properties LocalNetworkGatewayPropertiesFormat
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Network/localNetworkGateways'

ResourceTags

Name Description Value

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create a Site-to-Site VPN Connection

Deploy to Azure
This template allows you to create a Site-to-Site VPN Connection using Virtual Network Gateways
Create a Site-to-Site VPN Connection with VM

Deploy to Azure
This template allows you to create a Site-to-Site VPN Connection using Virtual Network Gateways
Create VNet with two Subnets, local network, and gateway

Deploy to Azure
This template creates a VNet, 2 subnets, and a gateway
Site-to-Site VPN with active-active VPN Gateways with BGP

Deploy to Azure
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.

Terraform (AzAPI provider) resource definition

The localNetworkGateways resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Network/localNetworkGateways resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/localNetworkGateways@2015-05-01-preview"
  name = "string"
  etag = "string"
  location = "string"
  body = jsonencode({
    properties = {
      gatewayIpAddress = "string"
      localNetworkAddressSpace = {
        addressPrefixes = [
          "string"
        ]
      }
      provisioningState = "string"
      resourceGuid = "string"
    }
  })
  tags = {
    {customized property} = "string"
  }
}

Property values

AddressSpace

Name Description Value
addressPrefixes Gets or sets List of address blocks reserved for this virtual network in CIDR notation string[]

LocalNetworkGatewayPropertiesFormat

Name Description Value
gatewayIpAddress IP address of local network gateway. string
localNetworkAddressSpace Local network site Address space AddressSpace
provisioningState Gets or sets Provisioning state of the LocalNetworkGateway resource Updating/Deleting/Failed string
resourceGuid Gets or sets resource guid property of the LocalNetworkGateway resource string

Microsoft.Network/localNetworkGateways

Name Description Value
etag Gets a unique read-only string that changes whenever the resource is updated string
location Resource location string (required)
name The resource name string (required)
properties LocalNetworkGateway properties LocalNetworkGatewayPropertiesFormat
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Network/localNetworkGateways@2015-05-01-preview"

ResourceTags

Name Description Value