diff --git a/modules/private-cluster/variables.tf b/modules/private-cluster/variables.tf index e7fc865db9..e0b8accf6f 100644 --- a/modules/private-cluster/variables.tf +++ b/modules/private-cluster/variables.tf @@ -129,7 +129,6 @@ variable "disable_legacy_metadata_endpoints" { default = "true" } - variable "node_pools" { type = "list" description = "List of maps containing node pools" @@ -217,19 +216,20 @@ variable "service_account" { description = "The service account to run nodes as if not overridden in `node_pools`. The default value will cause a cluster-specific service account to be created." default = "create" } + variable "enable_private_endpoint" { - description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint" - default = false + description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint" + default = false } variable "enable_private_nodes" { - description = "(Beta) Whether nodes have internal IP addresses only" - default = false + description = "(Beta) Whether nodes have internal IP addresses only" + default = false } variable "master_ipv4_cidr_block" { - description = "(Beta) The IP range in CIDR notation to use for the hosted master network" - default = "10.0.0.0/28" + description = "(Beta) The IP range in CIDR notation to use for the hosted master network" + default = "10.0.0.0/28" } variable "basic_auth_username" { diff --git a/variables.tf b/variables.tf index 2a5bfa0f4d..8d563538a3 100644 --- a/variables.tf +++ b/variables.tf @@ -129,7 +129,6 @@ variable "disable_legacy_metadata_endpoints" { default = "true" } - variable "node_pools" { type = "list" description = "List of maps containing node pools"