From 7b8d4c1b839cf3fa64c51b5b9b287c9de0f57d59 Mon Sep 17 00:00:00 2001 From: Rob Morgan Date: Mon, 17 Jun 2019 14:51:01 +0200 Subject: [PATCH] remove quotes around booleans --- modules/gke-cluster/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gke-cluster/variables.tf b/modules/gke-cluster/variables.tf index ead52c4..00e3135 100644 --- a/modules/gke-cluster/variables.tf +++ b/modules/gke-cluster/variables.tf @@ -77,13 +77,13 @@ variable "http_load_balancing" { variable "enable_private_nodes" { description = "Control whether nodes have internal IP addresses only. If enabled, all nodes are given only RFC 1918 private addresses and communicate with the master via private networking." type = bool - default = "false" + default = false } variable "disable_public_endpoint" { description = "Control whether the master's internal IP address is used as the cluster endpoint. If set to 'true', the master can only be accessed from internal IP addresses." type = bool - default = "false" + default = false } variable "master_ipv4_cidr_block" { @@ -141,7 +141,7 @@ variable "ip_masq_resync_interval" { variable "ip_masq_link_local" { description = "Whether to masquerade traffic to the link-local prefix (169.254.0.0/16)." type = bool - default = "false" + default = false } # ---------------------------------------------------------------------------------------------------------------------