diff --git a/examples/dependency_example/main.tf b/examples/dependency_example/main.tf index 1a9b61c6..fbca9adc 100644 --- a/examples/dependency_example/main.tf +++ b/examples/dependency_example/main.tf @@ -26,7 +26,7 @@ resource "random_pet" "filename" { module "hello" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" upgrade = false @@ -38,7 +38,7 @@ module "hello" { module "two" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" upgrade = false @@ -50,7 +50,7 @@ module "two" { module "goodbye" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" upgrade = false diff --git a/examples/kubectl_wrapper_example/main.tf b/examples/kubectl_wrapper_example/main.tf index f2ff68fa..1a8915b5 100644 --- a/examples/kubectl_wrapper_example/main.tf +++ b/examples/kubectl_wrapper_example/main.tf @@ -83,7 +83,7 @@ data "google_client_config" "default" { module "kubectl-imperative" { source = "terraform-google-modules/gcloud/google//modules/kubectl-wrapper" - version = "~> 3.0" + version = "~> 4.0" project_id = var.project_id cluster_name = module.gke.name @@ -96,7 +96,7 @@ module "kubectl-imperative" { module "kubectl-local-yaml" { source = "terraform-google-modules/gcloud/google//modules/kubectl-wrapper" - version = "~> 3.0" + version = "~> 4.0" project_id = var.project_id cluster_name = module.gke.name @@ -120,7 +120,7 @@ module "fleet" { module "kubectl-fleet-imperative" { source = "terraform-google-modules/gcloud/google//modules/kubectl-fleet-wrapper" - version = "~> 3.0" + version = "~> 4.0" membership_name = module.fleet.cluster_membership_id membership_project_id = module.fleet.project_id @@ -133,7 +133,7 @@ module "kubectl-fleet-imperative" { module "kubectl-fleet-local-yaml" { source = "terraform-google-modules/gcloud/google//modules/kubectl-fleet-wrapper" - version = "~> 3.0" + version = "~> 4.0" membership_name = module.fleet.cluster_membership_id membership_project_id = module.fleet.project_id diff --git a/examples/script_example/main.tf b/examples/script_example/main.tf index ea68ff5c..9e35354c 100644 --- a/examples/script_example/main.tf +++ b/examples/script_example/main.tf @@ -16,7 +16,7 @@ module "cli" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" additional_components = ["kubectl", "beta"] diff --git a/examples/simple_example/main.tf b/examples/simple_example/main.tf index 1ed49727..fdb9ba96 100644 --- a/examples/simple_example/main.tf +++ b/examples/simple_example/main.tf @@ -16,7 +16,7 @@ module "cli" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" additional_components = ["kubectl", "beta"] @@ -27,7 +27,7 @@ module "cli" { module "cli-disabled" { source = "terraform-google-modules/gcloud/google" - version = "~> 3.0" + version = "~> 4.0" platform = "linux" additional_components = ["kubectl", "beta"]