diff --git a/README.md b/README.md index cc0511d..6886118 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ No providers. | Name | Source | Version | |------|--------|---------| -| [gke](#module\_gke) | terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster | 35.0.1 | +| [gke](#module\_gke) | terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster | 34.0.0 | ## Resources @@ -85,7 +85,7 @@ No resources. | [monitoring\_service](#input\_monitoring\_service) | The monitoring service that the cluster should write metrics to. Automatically send metrics from pods in the cluster to the Google Cloud Monitoring API. VM metrics will be collected by Google Compute Engine regardless of this setting Available options include monitoring.googleapis.com, monitoring.googleapis.com/kubernetes (beta) and none | `string` | `"monitoring.googleapis.com/kubernetes"` | no | | [network](#input\_network) | The VPC network to host the cluster in. | `string` | `"kubernetes-vpc"` | no | | [network\_policy](#input\_network\_policy) | Enable network policy addon | `bool` | `true` | no | -| [node\_zones](#input\_node\_zones) | The zones to host the cluster in (optional if regional cluster / required if zonal) | `list(string)` |
[| no | +| [node\_zones](#input\_node\_zones) | The zones to host the cluster in (optional if regional cluster / required if zonal) | `list(string)` |
"us-east1-b"
]
[| no | | [project\_id](#input\_project\_id) | The project ID to host the cluster in | `string` | n/a | yes | | [region](#input\_region) | The region to host the cluster in | `string` | n/a | yes | | [regional](#input\_regional) | Whether the master node should be regional or zonal | `bool` | `true` | no | diff --git a/main.tf b/main.tf index 81339ba..49a8add 100644 --- a/main.tf +++ b/main.tf @@ -10,7 +10,7 @@ #tfsec:ignore:google-gke-use-cluster-labels module "gke" { source = "terraform-google-modules/kubernetes-engine/google//modules/beta-private-cluster" - version = "35.0.1" + version = "34.0.0" release_channel = var.release_channel kubernetes_version = var.kubernetes_version project_id = var.project_id diff --git a/variables.tf b/variables.tf index f4a5dc6..e3477a1 100644 --- a/variables.tf +++ b/variables.tf @@ -96,7 +96,6 @@ variable "service_account_email" { description = "Email of service account" } - variable "http_load_balancing" { type = bool description = "Enable http load balancer add-on" @@ -148,7 +147,6 @@ variable "gce_pd_csi_driver" { default = true } - # ---------------------------------------- # NODE POOL VALUES # ---------------------------------------- @@ -301,3 +299,4 @@ variable "user_pool_initial_node_count" { description = "Number of initial nodes in user pool" default = 1 } +
"us-east1-b"
]