From 78a3620a34db123884e7c27f36e9e236fcf3507b Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Thu, 26 Jun 2025 09:40:09 -0700 Subject: [PATCH] chore(deps): restrict aws provider version to < 6.0.0 --- src/modules/postgresql-user/versions.tf | 2 +- src/versions.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/postgresql-user/versions.tf b/src/modules/postgresql-user/versions.tf index 6b2f61a..4509551 100644 --- a/src/modules/postgresql-user/versions.tf +++ b/src/modules/postgresql-user/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.9.0" + version = ">= 4.9.0, < 6.0.0" } random = { source = "hashicorp/random" diff --git a/src/versions.tf b/src/versions.tf index 1911bc9..4515e58 100644 --- a/src/versions.tf +++ b/src/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.9.0" + version = ">= 4.9.0, < 6.0.0" } postgresql = { source = "cyrilgdn/postgresql"