From ee961276e5002d8be41661b1e0fbd9c183a22323 Mon Sep 17 00:00:00 2001 From: Daniel Edwards Date: Mon, 21 Mar 2022 10:14:56 +1300 Subject: [PATCH] Remove aws provider v4 cap --- README.md | 9 +++++++++ versions.tf | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 73b031c..439a3e2 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,15 @@ Branch 0.11 is compatible with Terraform 0.11 but is no longer supported or main ## Tooling requirements This module supports Terraform `0.13.0` (with backwards compatibility for Terraform `0.12.31`) +If you experience issues with this module as a result of aws provider v4.0.0 and above we recommend creating an override to cap the provider version. For example: + +``` +aws = { + source : "hashicorp/aws", + version : ">= 3.38.0, < 4.0.0" +} +``` + # Supported Implementations ## No Datastore diff --git a/versions.tf b/versions.tf index ab24f59..8b7b92b 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source : "hashicorp/aws", - version : ">= 3.38.0, < 4.0.0" + version : ">= 3.38.0" } null = { source : "hashicorp/null",