diff --git a/README.md b/README.md index 4b509ee..b43799f 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ You need the following permissions to run this module. | Name | Version | |------|---------| -| [terraform](#requirement\_terraform) | >= 1.0.0, <1.7.0 | +| [terraform](#requirement\_terraform) | >= 1.0.0 | | [ibm](#requirement\_ibm) | >= 1.49.0, < 2.0.0 | ### Modules diff --git a/examples/basic/version.tf b/examples/basic/version.tf index 42408f3..fceff70 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 { # Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main # module's version.tf (basic example), and 1 example that will always use the latest provider version (complete example). diff --git a/examples/complete/version.tf b/examples/complete/version.tf index fd34385..a253b33 100644 --- a/examples/complete/version.tf +++ b/examples/complete/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.0.0, <1.7.0" + required_version = ">= 1.0.0" required_providers { # Ensure that there is always 1 example locked into the lowest provider version of the range defined in the main # module's version.tf (basic example), and 1 example that will always use the latest provider version (complete example). diff --git a/version.tf b/version.tf index 81e5f0e..6c82ee0 100644 --- a/version.tf +++ b/version.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.0.0, <1.7.0" + required_version = ">= 1.0.0" required_providers { ibm = { source = "IBM-Cloud/ibm"