Skip to content

Commit

Permalink
Disable kubernetes_dashboard by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishal Bhavsar authored and modular-magician committed Jun 27, 2019
1 parent 90df627 commit 5ad9f07
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ func resourceContainerCluster() *schema.Resource {
"disabled": {
Type: schema.TypeBool,
Optional: true,
Default: true,
},
},
},
Expand Down Expand Up @@ -2454,12 +2455,6 @@ func flattenClusterAddonsConfig(c *containerBeta.AddonsConfig) []map[string]inte
"disabled": c.KubernetesDashboard.Disabled,
},
}
} else {
result["kubernetes_dashboard"] = []map[string]interface{}{
{
"disabled": true,
},
}
}
if c.NetworkPolicyConfig != nil {
result["network_policy_config"] = []map[string]interface{}{
Expand Down

0 comments on commit 5ad9f07

Please sign in to comment.