Skip to content

Commit

Permalink
feat: updated required ibm provider version constraint to `>= 1.54.0,…
Browse files Browse the repository at this point in the history
… < 2.0.0` to pickup this [fix](IBM-Cloud/terraform-provider-ibm#4413) (#29)
  • Loading branch information
MatthewLemmond authored Jun 26, 2023
1 parent 6a3353e commit a48c1fc
Show file tree
Hide file tree
Showing 5 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 @@ -92,7 +92,7 @@ For more information about the access you need to run all the GoldenEye modules,
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.51.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/highavailability_mode/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
# Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
ibm = {
source = "IBM-Cloud/ibm"
version = "1.52.0"
version = "1.54.0"
}
restapi = {
source = "Mastercard/restapi"
Expand Down
4 changes: 2 additions & 2 deletions examples/landing-zone/version.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 1.0.0"
required_providers {
# Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
# Use latest version of provider in non-basic examples to verify latest version works with module
ibm = {
source = "IBM-Cloud/ibm"
version = "1.52.0"
version = ">= 1.54.0"
}
restapi = {
source = "Mastercard/restapi"
Expand Down
2 changes: 1 addition & 1 deletion module-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"ibm": {
"source": "ibm-cloud/ibm",
"version_constraints": [
"\u003e= 1.51.0"
"\u003e= 1.54.0, \u003c 2.0.0"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
# Use "greater than or equal to" range in modules
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.51.0"
version = ">= 1.54.0, < 2.0.0"
}
}
}

0 comments on commit a48c1fc

Please sign in to comment.