Merge pull request #13119 from tombuildsstuff/azure-lb-docs

provider/azurerm: Removing Deprecated Location Fields
This commit is contained in:
Tom Harvey 2017-03-29 09:22:30 +01:00 committed by GitHub
commit 1a911dc694
2 changed files with 0 additions and 3 deletions

View File

@ -51,7 +51,6 @@ The following arguments are supported:
* `name` - (Required) Specifies the name of the Backend Address Pool.
* `resource_group_name` - (Required) The name of the resource group in which to create the resource.
* `location` - (Required) Specifies the supported Azure location where the resource exists.
* `loadbalancer_id` - (Required) The ID of the LoadBalancer in which to create the Backend Address Pool.
## Attributes Reference

View File

@ -39,7 +39,6 @@ resource "azurerm_lb" "test" {
}
resource "azurerm_lb_nat_rule" "test" {
location = "West US"
resource_group_name = "${azurerm_resource_group.test.name}"
loadbalancer_id = "${azurerm_lb.test.id}"
name = "RDP Access"
@ -56,7 +55,6 @@ The following arguments are supported:
* `name` - (Required) Specifies the name of the NAT Rule.
* `resource_group_name` - (Required) The name of the resource group in which to create the resource.
* `location` - (Required) Specifies the supported Azure location where the resource exists.
* `loadbalancer_id` - (Required) The ID of the LoadBalancer in which to create the NAT Rule.
* `frontend_ip_configuration_name` - (Required) The name of the frontend IP configuration exposing this rule.
* `protocol` - (Required) The transport protocol for the external endpoint. Possible values are `Udp` or `Tcp`.