Skip to content

Commit

Permalink
feat(deps): updated required provider version to >= 1.54.0 in order…
Browse files Browse the repository at this point in the history
… to pull in provider fix for [auth policy issue](IBM-Cloud/terraform-provider-ibm#4413) (#490)
  • Loading branch information
Aashiq-J committed Jul 21, 2023
1 parent fba832c commit e41a3de
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ You need the following permissions to run this module.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.52.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.54.0 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion examples/default/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"
}
# The tls provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
tls = {
Expand Down
2 changes: 1 addition & 1 deletion examples/fscloud/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"
}
# The tls provider is not actually required by the module itself, just this example, so OK to use ">=" here instead of locking into a version
tls = {
Expand Down
2 changes: 1 addition & 1 deletion module-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@
"ibm": {
"source": "IBM-Cloud/ibm",
"version_constraints": [
"\u003e= 1.52.0"
"\u003e= 1.54.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.52.0"
version = ">= 1.54.0"
}
}
}

0 comments on commit e41a3de

Please sign in to comment.