azurerm_local_network_gateway
Manages a local network gateway connection over which specific connections can be configured.
Example Usage
resource "azurerm_resource_group" "test" { name = "localNetworkGWTest" location = "West US" } resource "azurerm_local_network_gateway" "home" { name = "backHome" resource_group_name = "${azurerm_resource_group.test.name}" location = "${azurerm_resource_group.test.location}" gateway_address = "12.13.14.15" address_space = ["10.0.0.0/16"] }
Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the local network gateway. Changing this forces a new resource to be created. -
resource_group_name
- (Required) The name of the resource group in which to create the local network gateway. -
location
- (Required) The location/region where the local network gateway is created. Changing this forces a new resource to be created. -
gateway_address
- (Required) The IP address of the gateway to which to connect. -
address_space
- (Required) The list of string CIDRs representing the address spaces the gateway exposes. -
bgp_settings
- (Optional) Abgp_settings
block as defined below containing the Local Network Gateway's BGP speaker settings. -
tags
- (Optional) A mapping of tags to assign to the resource.
bgp_settings
supports the following:
-
asn
- (Required) The BGP speaker's ASN. -
bgp_peering_address
- (Required) The BGP peering address and BGP identifier of this BGP speaker. -
peer_weight
- (Optional) The weight added to routes learned from this BGP speaker.
Attributes Reference
The following attributes are exported:
-
id
- The local network gateway unique ID within Azure.
Import
Local Network Gateways can be imported using the resource id
, e.g.
terraform import azurerm_local_network_gateway.lng1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/localNetworkGateways/lng1
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/azurerm/r/local_network_gateway.html