Skip to content

Commit

Permalink
fix: updated required provider version constraints to not allow major…
Browse files Browse the repository at this point in the history
… version updates (#714)

Co-authored-by: Md Anam Raihan <Md.Anam.Raihan@ibm.com>
  • Loading branch information
iamar7 and Md Anam Raihan authored Feb 16, 2024
1 parent 76ee68a commit 1d76baa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,9 +839,9 @@ module "cluster_pattern" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3, < 1.6 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.60.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.4.3 |
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.60.0, < 2.0.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.4.3, < 4.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 kms/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.60.0"
version = ">= 1.60.0, < 2.0.0"
}
}
required_version = ">= 1.3, < 1.6"
Expand Down
2 changes: 1 addition & 1 deletion ssh_key/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.60.0"
version = ">= 1.60.0, < 2.0.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.60.0"
version = ">= 1.60.0, < 2.0.0"
}
random = {
source = "hashicorp/random"
version = ">= 3.4.3"
version = ">= 3.4.3, < 4.0.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.9.1"
version = ">= 0.9.1, < 1.0.0"
}
}
}
Expand Down

0 comments on commit 1d76baa

Please sign in to comment.