From 476ae1e25bab1e0c9510715950982e8158e1be01 Mon Sep 17 00:00:00 2001 From: akocbek <106765658+akocbek@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:54:44 +0000 Subject: [PATCH] fix: update required ibm provider version to < 1.7 (#742) Co-authored-by: akocbek@ie.ibm.com --- README.md | 2 +- common-dev-assets | 2 +- examples/basic/version.tf | 2 +- examples/complete/version.tf | 2 +- version.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 54b664b..b50a1fa 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ statement instead the previous block. | Name | Version | |------|---------| -| [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 | +| [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 | ### Modules diff --git a/common-dev-assets b/common-dev-assets index 9932ccd..ad28982 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 9932ccdc5b47892639ac96b751969595c41067d6 +Subproject commit ad28982e3b7f0ba1d9d4ccd916f17a8f85d2049a diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 46915a6..a557e04 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.6.0" + required_version = ">= 1.3.0, <1.7.0" # Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main # module's version.tf (usually a basic example), and 1 example that will always use the latest provider version. diff --git a/examples/complete/version.tf b/examples/complete/version.tf index 5adb5b5..d70a9d2 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.6.0" + required_version = ">= 1.3.0, <1.7.0" # Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main # module's version.tf (usually a basic example), and 1 example that will always use the latest provider version. diff --git a/version.tf b/version.tf index bcb2505..d5cac67 100644 --- a/version.tf +++ b/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.6.0" + required_version = ">= 1.3.0, <1.7.0" # If your module requires any terraform providers, uncomment the "required_providers" section below and add all required providers. # Each required provider's version should be a flexible range to future proof the module's usage with upcoming minor and patch versions.