From 7fb78df634ed3ad88379d1742556a0640a4e23e0 Mon Sep 17 00:00:00 2001 From: Jan Sebastian Siwy Date: Fri, 23 Jun 2023 13:20:00 +0200 Subject: [PATCH] Relax version constraints for modules Remove upper boundary as version upgrades need to be tested when applying the root modules anyway. --- versions.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versions.tf b/versions.tf index 2d49cc0..962f8da 100644 --- a/versions.tf +++ b/versions.tf @@ -4,11 +4,11 @@ terraform { required_providers { archive = { source = "hashicorp/archive" - version = "~> 2.0" + version = ">= 2.0" } aws = { source = "hashicorp/aws" - version = ">= 3, < 5" + version = ">= 3" } } }