Skip to content

Commit

Permalink
fix(deps): updated required ibm provider version to `">= 1.61.0, < 2.…
Browse files Browse the repository at this point in the history
…0.0"` (#194)
  • Loading branch information
iamar7 committed Feb 13, 2024
1 parent 418b618 commit afe0a51
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ You need the following permissions to run this module.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0, <1.6.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.57.0, < 2.0.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.61.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 @@ -4,7 +4,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.57.0"
version = "= 1.61.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/ha-complete/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.57.0"
version = ">= 1.61.0"
}
}
}
4 changes: 2 additions & 2 deletions version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
version = ">= 1.57.0, < 2.0.0"
version = ">= 1.61.0, < 2.0.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.9.1"
version = ">= 0.9.1, < 1.0.0"
}
}
}

0 comments on commit afe0a51

Please sign in to comment.