From 435fcf5e52014476cb39cfbec50ac5c215069f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Heleno?= Date: Mon, 6 Mar 2023 11:45:19 +0100 Subject: [PATCH] fix: change to looser versions constraints as per berst practices See documentation [here](https://developer.hashicorp.com/terraform/language/providers/requirements#version-constraints). --- terraform.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform.tf b/terraform.tf index 39bf23c..73dcaea 100644 --- a/terraform.tf +++ b/terraform.tf @@ -2,11 +2,11 @@ terraform { required_providers { argocd = { source = "oboukili/argocd" - version = "~> 4" + version = ">= 4" } utils = { source = "cloudposse/utils" - version = "~> 1" + version = ">= 1" } } }