Skip to content

Commit

Permalink
resource_arm_application_gateway: set disabled_protocols Computed: tr…
Browse files Browse the repository at this point in the history
…ue to overcome conflicts in state with new ssl_policy block
  • Loading branch information
bs-matil committed May 3, 2019
1 parent f504358 commit 4f9051b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azurerm/resource_arm_application_gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ func resourceArmApplicationGateway() *schema.Resource {
"disabled_ssl_protocols": {
Type: schema.TypeList,
Optional: true,
Computed: true,
Deprecated: "has been replaced by `ssl_policy`.`disabled_protocols`",
Elem: &schema.Schema{
Type: schema.TypeString,
Expand All @@ -648,6 +649,7 @@ func resourceArmApplicationGateway() *schema.Resource {
"disabled_protocols": {
Type: schema.TypeList,
Optional: true,
Computed: true,
Elem: &schema.Schema{
Type: schema.TypeString,
DiffSuppressFunc: suppress.CaseDifference,
Expand Down

0 comments on commit 4f9051b

Please sign in to comment.