Skip to content

Commit

Permalink
fix: remove upper limit for required terraform version (#533)
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 committed Jun 11, 2024
1 parent e7b5c2e commit e8264a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ You need the following permissions to run this module.

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

### Modules
Expand Down
2 changes: 1 addition & 1 deletion examples/default/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##############################################################################

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 or default), and 1 example that will always use the latest provider version.
required_providers {
Expand Down
2 changes: 1 addition & 1 deletion examples/every-mt-vpe/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##############################################################################

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 or default), and 1 example that will always use the latest provider version.
required_providers {
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
version = ">=1.61.0, <2.0.0"
}
}
required_version = ">=1.3, <1.7.0"
required_version = ">=1.3"
}

##############################################################################

0 comments on commit e8264a7

Please sign in to comment.