From 54378a28d029ccd58f2edae3b5ade4361c05ca19 Mon Sep 17 00:00:00 2001 From: Khuzaima Shakeel <56439894+Khuzaima05@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:00:41 +0530 Subject: [PATCH] fix(deps): updated required IBM provider version to `>= 1.61.0, <2.0.0` to pickup fix for [this](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/4931) provider issue (#286) --- README.md | 2 +- common-dev-assets | 2 +- examples/basic/version.tf | 2 +- examples/complete/version.tf | 2 +- examples/fscloud/version.tf | 2 +- modules/fscloud/README.md | 2 +- modules/fscloud/version.tf | 2 +- version.tf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4e3dd51..80dc8e7 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ You need the following permissions to run this module. | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 | -| [ibm](#requirement\_ibm) | >= 1.56.1, < 2.0.0 | +| [ibm](#requirement\_ibm) | >= 1.61.0, <2.0.0 | | [time](#requirement\_time) | >= 0.9.1 | ### Modules diff --git a/common-dev-assets b/common-dev-assets index f2e1cf2..d6c99a7 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit f2e1cf26801616446a54f63b6ba2057a81c00cf0 +Subproject commit d6c99a75d2232cc84d3a60deaced8f132d93bda0 diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 63b5494..8e1588e 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -4,7 +4,7 @@ terraform { # Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works ibm = { source = "IBM-Cloud/ibm" - version = "1.56.1" + version = "1.61.0" } } } diff --git a/examples/complete/version.tf b/examples/complete/version.tf index fcedf70..436bdcb 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -4,7 +4,7 @@ terraform { # Use latest version of provider in non-basic examples to verify latest version works with module ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.56.1" + version = ">=1.61.0, <2.0.0" } } } diff --git a/examples/fscloud/version.tf b/examples/fscloud/version.tf index fcedf70..436bdcb 100644 --- a/examples/fscloud/version.tf +++ b/examples/fscloud/version.tf @@ -4,7 +4,7 @@ terraform { # Use latest version of provider in non-basic examples to verify latest version works with module ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.56.1" + version = ">=1.61.0, <2.0.0" } } } diff --git a/modules/fscloud/README.md b/modules/fscloud/README.md index 236542f..c22a4df 100644 --- a/modules/fscloud/README.md +++ b/modules/fscloud/README.md @@ -14,7 +14,7 @@ The IBM Cloud Framework for Financial Services mandates the application of an in | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 | -| [ibm](#requirement\_ibm) | >= 1.56.1 | +| [ibm](#requirement\_ibm) | >=1.61.0, <2.0.0 | ### Modules diff --git a/modules/fscloud/version.tf b/modules/fscloud/version.tf index ff7997d..73f89ed 100644 --- a/modules/fscloud/version.tf +++ b/modules/fscloud/version.tf @@ -8,7 +8,7 @@ terraform { ibm = { source = "IBM-Cloud/ibm" # Use "greater than or equal to" range in modules - version = ">= 1.56.1" + version = ">=1.61.0, <2.0.0" } } } diff --git a/version.tf b/version.tf index 34ab793..1739317 100644 --- a/version.tf +++ b/version.tf @@ -4,7 +4,7 @@ terraform { # Use "greater than or equal to" range in modules ibm = { source = "IBM-Cloud/ibm" - version = ">= 1.56.1, < 2.0.0" + version = ">= 1.61.0, <2.0.0" } time = { source = "hashicorp/time"