Config should reflect description

Example addons_config was supposed to show how to disable addons (http_load_balancing and horizontal_pod_autoscaling), but it was enabling them instead.
This commit is contained in:
Michał Michałowski 2016-10-11 10:14:27 +02:00 committed by GitHub
parent 258005408b
commit 635eb40c71
1 changed files with 3 additions and 2 deletions

View File

@ -112,13 +112,14 @@ resource "google_container_cluster" "primary" {
* `horizontal_pod_autoscaling` - (Optional) The status of the Horizontal Pod Autoscaling addon. It is enabled by default; set `disabled = true` to disable.
This example `addons_config` disables both addons:
```
addons_config {
http_load_balancing {
disabled = false
disabled = true
}
horizontal_pod_autoscaling {
disabled = false
disabled = true
}
}
```