Skip to content

Commit

Permalink
Remove case diff suppress for property rule_type of azurerm_applicati…
Browse files Browse the repository at this point in the history
…on_gateway (#8061)

fixes #8043
  • Loading branch information
Neil Ye authored Aug 11, 2020
1 parent 168ebbb commit e447425
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,13 +486,12 @@ func resourceArmApplicationGateway() *schema.Resource {
},

"rule_type": {
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: suppress.CaseDifference,
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.StringInSlice([]string{
string(network.Basic),
string(network.PathBasedRouting),
}, true),
}, false),
},

"http_listener_name": {
Expand Down

0 comments on commit e447425

Please sign in to comment.