From 6ac829621c8c6f362e1a159bdbb903c2e90f5cd7 Mon Sep 17 00:00:00 2001 From: alex-reiff <113188190+alex-reiff@users.noreply.github.com> Date: Tue, 16 Jan 2024 11:45:45 -0500 Subject: [PATCH] fix: updated required ibm provider version to `>=1.61.0, <2.0.0` to pickup fix for [known provider issue](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4978) (#152) --- README.md | 2 +- common-dev-assets | 2 +- examples/default/version.tf | 2 +- version.tf | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cad2ddb..15b7f56 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,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.51.0 | +| [ibm](#requirement\_ibm) | >=1.61.0, <2.0.0 | ### Modules diff --git a/common-dev-assets b/common-dev-assets index a426d22..48ae740 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit a426d22a4a993b113faa7a9c725d515b3b8ead0a +Subproject commit 48ae740ffbb355eb75812923d1e1675e445831b1 diff --git a/examples/default/version.tf b/examples/default/version.tf index fe69ae9..8492cd5 100644 --- a/examples/default/version.tf +++ b/examples/default/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.51.0" + version = "1.61.0" } } } diff --git a/version.tf b/version.tf index 24b82ac..47deaa8 100644 --- a/version.tf +++ b/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.51.0" + version = ">=1.61.0, <2.0.0" } } }