diff --git a/README.md b/README.md index 6c605554..a4939631 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ like audit logging and single sign-on. This module is intended to run in an Google Cloud account with minimal preparation, however it does have the following pre-requisites: -### Terrafom version >= 1 +### Terrafom version >= 1.9 ### Credentials / Permissions diff --git a/examples/custom-tf-with-existing-resources/main.tf b/examples/custom-tf-with-existing-resources/main.tf index 69752732..b9b308a0 100644 --- a/examples/custom-tf-with-existing-resources/main.tf +++ b/examples/custom-tf-with-existing-resources/main.tf @@ -164,7 +164,7 @@ locals { module "wandb" { source = "wandb/wandb/helm" - version = "1.2.0" + version = "2.0.0" spec = { values = { diff --git a/examples/custom-tf-with-vpc-sql/main.tf b/examples/custom-tf-with-vpc-sql/main.tf index 3d074114..1f0a0fd2 100644 --- a/examples/custom-tf-with-vpc-sql/main.tf +++ b/examples/custom-tf-with-vpc-sql/main.tf @@ -194,7 +194,7 @@ locals { module "wandb" { source = "wandb/wandb/helm" - version = "1.2.0" + version = "2.0.0" spec = { values = { diff --git a/main.tf b/main.tf index 8dc3516c..e6bf8388 100644 --- a/main.tf +++ b/main.tf @@ -265,7 +265,7 @@ data "google_client_config" "current" {} module "wandb" { source = "wandb/wandb/helm" - version = "1.2.0" + version = "2.0.0" spec = { values = { diff --git a/versions.tf b/versions.tf index ca2a9679..9d872181 100644 --- a/versions.tf +++ b/versions.tf @@ -1,5 +1,5 @@ terraform { - required_version = "~> 1.0" + required_version = "~> 1.9" required_providers { time = { source = "hashicorp/time"