Skip to content

Commit

Permalink
Bug Fix: azurerm_kubernetes_cluster - suppress case difference on `…
Browse files Browse the repository at this point in the history
…load_balancer_sku` (#3958)
  • Loading branch information
mbfrahry committed Jul 29, 2019
1 parent 8bf786d commit dfd4ceb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion azurerm/resource_arm_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,8 @@ func resourceArmKubernetesCluster() *schema.Resource {
ValidateFunc: validation.StringInSlice([]string{
string(containerservice.Basic),
string(containerservice.Standard),
}, false),
}, true),
DiffSuppressFunc: suppress.CaseDifference,
},
},
},
Expand Down

0 comments on commit dfd4ceb

Please sign in to comment.