From 5fd3e123de5437eab41e51a3c2544f206d7f17f8 Mon Sep 17 00:00:00 2001 From: Pratik Mallya Date: Fri, 21 Sep 2018 18:39:10 -0700 Subject: [PATCH] Use a more helpful variable description Many thanks to @qvallance for this tip! --- variables.tf | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/variables.tf b/variables.tf index 6dc411e644..e70e557369 100644 --- a/variables.tf +++ b/variables.tf @@ -66,9 +66,22 @@ variable "node_version" { } variable "master_authorized_networks_config" { - description = "The desired configuration options for master authorized networks. Omit the nested cidr_blocks attribute to disallow external access (except the cluster node IPs, which GKE automatically whitelists)." - type = "list" - default = [] + type = "list" + + description = <