FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

azurerm_local_network_gateway

Creates a new local network gateway connection over which specific connections can be configured.

Example Usage

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:

Attributes Reference

The following attributes are exported:

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

See the source of this document at Terraform.io