diff --git a/README.md b/README.md index 40c7fba..97512f0 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ You need the following permissions to run this module. | Name | Version | |------|---------| -| [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 | +| [terraform](#requirement\_terraform) | >= 1.3.0 | | [ibm](#requirement\_ibm) | >=1.64.1, <2.0.0 | | [time](#requirement\_time) | >= 0.9.1, <1.0.0 | diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 21b2501..d2c4a2c 100644 --- a/examples/basic/version.tf +++ b/examples/basic/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.7.0" + required_version = ">= 1.3.0" required_providers { ibm = { source = "IBM-Cloud/ibm" diff --git a/examples/complete/version.tf b/examples/complete/version.tf index 8ef10b8..5414c79 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.7.0" + required_version = ">= 1.3.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/modules/attachment/README.md b/modules/attachment/README.md index 0b36ea9..d5370e8 100644 --- a/modules/attachment/README.md +++ b/modules/attachment/README.md @@ -37,7 +37,7 @@ module "create_scc_profile_attachment " { | Name | Version | |------|---------| -| [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 | +| [terraform](#requirement\_terraform) | >= 1.3.0 | | [ibm](#requirement\_ibm) | >=1.64.1, <2.0.0 | ### Modules diff --git a/modules/attachment/version.tf b/modules/attachment/version.tf index 91423ad..2eafbc3 100644 --- a/modules/attachment/version.tf +++ b/modules/attachment/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.7.0" + required_version = ">= 1.3.0" required_providers { ibm = { diff --git a/version.tf b/version.tf index 44509ca..675e573 100644 --- a/version.tf +++ b/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.3.0, <1.7.0" + required_version = ">= 1.3.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.