From ec00637cd90aaf710b526f508f6223d7366932f5 Mon Sep 17 00:00:00 2001 From: Peter Ittner Date: Tue, 9 Feb 2021 00:47:53 +0100 Subject: [PATCH] `azurerm_app_service`: `ip_restriction.x.ip_address` now accepts anything other than an empty string. #10440 --- azurerm/internal/services/web/app_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurerm/internal/services/web/app_service.go b/azurerm/internal/services/web/app_service.go index 39c32838c9ad..2bf774f8db0f 100644 --- a/azurerm/internal/services/web/app_service.go +++ b/azurerm/internal/services/web/app_service.go @@ -836,7 +836,7 @@ func schemaAppServiceIpRestriction() *schema.Schema { "ip_address": { Type: schema.TypeString, Optional: true, - ValidateFunc: validation.IsCIDR, + ValidateFunc: validation.StringIsNotEmpty, }, "service_tag": {