Skip to content

Commit

Permalink
fix: upgrade gke module to avoid TPGv5.44.0 with Autopilot
Browse files Browse the repository at this point in the history
Change-Id: I716787e0dd8699b36d919feb5c42de6d6ccdbcb5
  • Loading branch information
Gen Lu committed Sep 11, 2024
1 parent c1633fa commit f83f85b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/gke-autopilot-private-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-autopilot-private-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-autopilot-public-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-autopilot-public-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-standard-private-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/private-cluster"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down
2 changes: 1 addition & 1 deletion modules/gke-standard-public-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {

module "gke" {
source = "terraform-google-modules/kubernetes-engine/google"
version = "32.0.1"
version = "33.0.0"
project_id = var.project_id
regional = var.cluster_regional
name = var.cluster_name
Expand Down

0 comments on commit f83f85b

Please sign in to comment.