This repository was archived by the owner on Jan 5, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ resource "google_compute_subnetwork" "cluster_subnet" {
3939
4040module "gke" {
4141 depends_on = [google_compute_subnetwork . cluster_subnet ]
42- source = " github.com/argonautdev/terraform-google-kubernetes-engine//modules/private-cluster?ref=v21.1.6 "
42+ source = " github.com/argonautdev/terraform-google-kubernetes-engine//modules/private-cluster?ref=v21.1.8 "
4343 project_id = var. project_id
4444 name = var. cluster_name
4545 description = var. description
@@ -54,7 +54,7 @@ module "gke" {
5454 filestore_csi_driver = var. filestore_csi_driver
5555 horizontal_pod_autoscaling = var. horizontal_pod_autoscaling
5656 enable_vertical_pod_autoscaling = var. enable_vertical_pod_autoscaling
57- kubernetes_version = var. kubernetes_version
57+ kubernetes_version = var. platform_version
5858 initial_node_count = var. initial_node_count # #How many instances should be launched in each zone
5959 node_pools = var. node_pools
6060 remove_default_node_pool = var. remove_default_node_pool
Original file line number Diff line number Diff line change @@ -125,10 +125,9 @@ variable "horizontal_pod_autoscaling" {
125125}
126126
127127# # https://cloud.google.com/kubernetes-engine/versioning#specifying_cluster_version
128- variable "kubernetes_version " {
128+ variable "platform_version " {
129129 type = string
130130 description = " The Kubernetes version of the masters."
131- default = " 1.24"
132131}
133132
134133variable "initial_node_count" {
You can’t perform that action at this time.
0 commit comments