Merge pull request #9319 from mysza/patch-1

provider/google docs: Config should reflect description
This commit is contained in:
James Nugent 2016-10-18 07:44:58 -05:00 committed by GitHub
commit 7bd25d7d48
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
}
}
```