Skip to content

Commit

Permalink
fix: updated required ibm provider to >= 1.59.0, < 2.0.0 (#622)
Browse files Browse the repository at this point in the history
Co-authored-by: Md Anam Raihan <[email protected]>
  • Loading branch information
iamar7 and Md Anam Raihan authored Feb 16, 2024
1 parent 47251ac commit 43306dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ You need the following permissions to run this module.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.54.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.59.0, < 2.0.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1, < 1.0.0 |

### Modules

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.54.0"
version = "= 1.59.0"
}
tls = {
source = "hashicorp/tls"
Expand Down
4 changes: 2 additions & 2 deletions version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
# Use "greater than or equal to" range in modules
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.54.0"
version = ">= 1.59.0, < 2.0.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.9.1"
version = ">= 0.9.1, < 1.0.0"
}
}
}

0 comments on commit 43306dd

Please sign in to comment.