From 205201ff977942153f1905e3909bd614bc13307b Mon Sep 17 00:00:00 2001 From: Md Anam Raihan Date: Wed, 14 Feb 2024 18:43:00 +0530 Subject: [PATCH] fix(deps): updated required provider constraints to not allow major version updates (#157) Co-authored-by: Md Anam Raihan --- README.md | 4 ++-- version.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index db95271..8f604b7 100644 --- a/README.md +++ b/README.md @@ -189,8 +189,8 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0, < 1.6.0 | -| [ibm](#requirement\_ibm) | >= 1.49.0 | -| [local](#requirement\_local) | >= 2.4.0 | +| [ibm](#requirement\_ibm) | >= 1.49.0, < 2.0.0 | +| [local](#requirement\_local) | >= 2.4.0, < 3.0.0 | ### Modules diff --git a/version.tf b/version.tf index a0c0354..f76a241 100644 --- a/version.tf +++ b/version.tf @@ -5,11 +5,11 @@ terraform { # Use "greater than or equal to" range in modules ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.49.0" + version = ">= 1.49.0, < 2.0.0" } local = { source = "hashicorp/local" - version = ">= 2.4.0" + version = ">= 2.4.0, < 3.0.0" } } }