From bef45c93f3161ab64ebfbe89aafca0780b987e0f Mon Sep 17 00:00:00 2001 From: Tom Dudley Date: Sat, 6 Jun 2020 15:30:19 +0100 Subject: [PATCH 1/2] GH-7227 Fix the descriptions for the subnet ID parameters in the frontend_ip_configuration and gateway_ip_configuration for the application_gateway resource. --- website/docs/r/application_gateway.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/r/application_gateway.html.markdown b/website/docs/r/application_gateway.html.markdown index 7d65240bd39e..2f899c6235dc 100644 --- a/website/docs/r/application_gateway.html.markdown +++ b/website/docs/r/application_gateway.html.markdown @@ -252,7 +252,7 @@ A `frontend_ip_configuration` block supports the following: * `name` - (Required) The name of the Frontend IP Configuration. -* `subnet_id` - (Required) The ID of the Subnet which the Application Gateway should be connected to. +* `subnet_id` - (Optional) The name or ID of the Subnet. * `private_ip_address` - (Optional) The Private IP Address to use for the Application Gateway. @@ -276,7 +276,7 @@ A `gateway_ip_configuration` block supports the following: * `name` - (Required) The Name of this Gateway IP Configuration. -* `subnet_id` - (Required) The ID of a Subnet. +* `subnet_id` - (Required) The ID of the Subnet which the Application Gateway should be connected to. --- From c9b9d5e4516b6fbaf645124f93984d0fb07ebdd2 Mon Sep 17 00:00:00 2001 From: Tom Dudley Date: Sat, 6 Jun 2020 15:38:23 +0100 Subject: [PATCH 2/2] subnet_id can't take the subnet name. --- website/docs/r/application_gateway.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/application_gateway.html.markdown b/website/docs/r/application_gateway.html.markdown index 2f899c6235dc..4f9a357ddf4d 100644 --- a/website/docs/r/application_gateway.html.markdown +++ b/website/docs/r/application_gateway.html.markdown @@ -252,7 +252,7 @@ A `frontend_ip_configuration` block supports the following: * `name` - (Required) The name of the Frontend IP Configuration. -* `subnet_id` - (Optional) The name or ID of the Subnet. +* `subnet_id` - (Optional) The ID of the Subnet. * `private_ip_address` - (Optional) The Private IP Address to use for the Application Gateway.