From 1ac36c8d43dc705ce1a9fb54cbd2fe49de99b7ce Mon Sep 17 00:00:00 2001 From: Nim Jayawardena Date: Sat, 31 Aug 2024 20:22:38 -0400 Subject: [PATCH] feat: Set Terraform required_version to >= 1.5 --- infra/examples/simple_example/versions.tf | 2 +- infra/test/setup/versions.tf | 2 +- infra/versions.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infra/examples/simple_example/versions.tf b/infra/examples/simple_example/versions.tf index 421a19393..a24010c5e 100644 --- a/infra/examples/simple_example/versions.tf +++ b/infra/examples/simple_example/versions.tf @@ -15,11 +15,11 @@ */ terraform { + required_version = ">= 1.5" required_providers { google = { source = "hashicorp/google" version = ">= 4.0" } } - required_version = ">= 0.13" } diff --git a/infra/test/setup/versions.tf b/infra/test/setup/versions.tf index 3a399c0ad..ab85be7e6 100644 --- a/infra/test/setup/versions.tf +++ b/infra/test/setup/versions.tf @@ -15,7 +15,7 @@ */ terraform { - required_version = ">= 0.13" + required_version = ">= 1.5" required_providers { google = { source = "hashicorp/google" diff --git a/infra/versions.tf b/infra/versions.tf index b09f08480..0b8bd91aa 100644 --- a/infra/versions.tf +++ b/infra/versions.tf @@ -15,7 +15,7 @@ */ terraform { - required_version = ">= 0.13" + required_version = ">= 1.5" required_providers { google = { source = "hashicorp/google"