Skip to content

Commit

Permalink
azurerm_app_service: ip_restriction.x.ip_address now accepts anyt…
Browse files Browse the repository at this point in the history
…hing other than an empty string. #10440
  • Loading branch information
PeterIttner authored Feb 8, 2021
1 parent 40d0bdb commit ec00637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurerm/internal/services/web/app_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ func schemaAppServiceIpRestriction() *schema.Schema {
"ip_address": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.IsCIDR,
ValidateFunc: validation.StringIsNotEmpty,
},

"service_tag": {
Expand Down

0 comments on commit ec00637

Please sign in to comment.