Skip to content

Commit

Permalink
Merge pull request hashicorp#9319 from mysza/patch-1
Browse files Browse the repository at this point in the history
provider/google docs: Config should reflect description
  • Loading branch information
jen20 authored Oct 18, 2016
2 parents 0c4b4a1 + 635eb40 commit 7bd25d7
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
```
Expand Down

0 comments on commit 7bd25d7

Please sign in to comment.