Skip to content

Commit

Permalink
suggested validation for x_fd_health_probe added
Browse files Browse the repository at this point in the history
Co-authored-by: Steve <[email protected]>
  • Loading branch information
aristosvo and jackofallops authored Apr 20, 2021
1 parent 67b36cc commit a727be8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion azurerm/internal/services/web/app_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -922,9 +922,12 @@ func schemaAppServiceIpRestriction() *schema.Schema {
"x_fd_health_probe": {
Type: schema.TypeSet,
Optional: true,
MaxItems: 8,
MaxItems: 1,
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateFunc: validation.StringInSlice([]string{
"1",
}, false),
},
},
},
Expand Down

0 comments on commit a727be8

Please sign in to comment.