From 3974e86361787a2ca626cae3c9283a861bed17e4 Mon Sep 17 00:00:00 2001 From: Rowan Matulis Date: Wed, 8 Oct 2025 14:27:43 +1100 Subject: [PATCH] Update AWS provider version to >= 6.0 Bump the required AWS provider version from >= 5.0 to >= 6.0 in versions.tf to ensure compatibility with newer features and improvements. aws_region uses region attribute which was introduced in the aws provider version 6. https://registry.terraform.io/providers/hashicorp/aws/6.15.0/docs/data-sources/region https://registry.terraform.io/providers/hashicorp/aws/5.100.0/docs/data-sources/region --- versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tf b/versions.tf index 29ec41d..88fefa8 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 5.0" + version = ">= 6.0" } } }