Skip to content

Commit

Permalink
fix: remove upper limit for required terraform version (#191)
Browse files Browse the repository at this point in the history
Co-authored-by: akocbek@ie.ibm.com <akocbek@ie.ibm.com>
  • Loading branch information
akocbek and akocbekIBM authored Jun 11, 2024
1 parent 089b29f commit 53f3f73
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module "enterprise" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0, <1.7.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.54.0, < 2.0.0 |

### Modules
Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/version.tf
Original file line number Diff line number Diff line change
@@ -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 (basic example), and 1 example that will always use the latest provider version (advanced example).
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/version.tf
Original file line number Diff line number Diff line change
@@ -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 (basic example), and 1 example that will always use the latest provider version (advanced example).
Expand Down
2 changes: 1 addition & 1 deletion submodules/dynamic_values/version.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0, <1.7.0"
required_version = ">= 1.3.0"

required_providers {
ibm = {
Expand Down
2 changes: 1 addition & 1 deletion submodules/enterprise_hierarchy/version.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0, <1.7.0"
required_version = ">= 1.3.0"

required_providers {
ibm = {
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.3.0, <1.7.0"
required_version = ">= 1.3.0"

# Each required provider's version should be a flexible range to future proof the module's usage with upcoming minor and patch versions.
required_providers {
Expand Down

0 comments on commit 53f3f73

Please sign in to comment.