Skip to content

Commit 635eb40

Browse files
authored
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.
1 parent 2580054 commit 635eb40

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

website/source/docs/providers/google/r/container_cluster.html.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,14 @@ resource "google_container_cluster" "primary" {
112112
* `horizontal_pod_autoscaling` - (Optional) The status of the Horizontal Pod Autoscaling addon. It is enabled by default; set `disabled = true` to disable.
113113

114114
This example `addons_config` disables both addons:
115+
115116
```
116117
addons_config {
117118
http_load_balancing {
118-
disabled = false
119+
disabled = true
119120
}
120121
horizontal_pod_autoscaling {
121-
disabled = false
122+
disabled = true
122123
}
123124
}
124125
```

0 commit comments

Comments
 (0)