From 635eb40c71f4bccc229e125609aa94a434d06e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Micha=C5=82owski?= Date: Tue, 11 Oct 2016 10:14:27 +0200 Subject: [PATCH] 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. --- .../docs/providers/google/r/container_cluster.html.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/google/r/container_cluster.html.markdown b/website/source/docs/providers/google/r/container_cluster.html.markdown index abcca800ad..0375837ea9 100644 --- a/website/source/docs/providers/google/r/container_cluster.html.markdown +++ b/website/source/docs/providers/google/r/container_cluster.html.markdown @@ -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 } } ```