Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
remove quotes around booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
robmorgan committed Jun 17, 2019
1 parent c5ac860 commit 7b8d4c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/gke-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down Expand Up @@ -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
}

# ---------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 7b8d4c1

Please sign in to comment.