From 4e89fcca0531ce86f68bea6b7b097caad05b6b0b Mon Sep 17 00:00:00 2001 From: Nathan John Date: Fri, 16 Feb 2024 14:13:35 +0000 Subject: [PATCH] Update the AWS provider & required versions of terraform. They seem to be compatible with the current generator! --- chalice/package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chalice/package.py b/chalice/package.py index ecdd0268e..0c969302e 100644 --- a/chalice/package.py +++ b/chalice/package.py @@ -819,9 +819,9 @@ def generate(self, resources): 'resource': {}, 'locals': {}, 'terraform': { - 'required_version': '>= 0.12.26, < 1.4.0', + 'required_version': '>= 0.12.26, < 1.8.0', 'required_providers': { - 'aws': {'version': '>= 2, < 5'}, + 'aws': {'version': '>= 2, < 6'}, 'null': {'version': '>= 2, < 4'} } },