Skip to content

Commit

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

Co-authored-by: Md Anam Raihan <[email protected]>
  • Loading branch information
iamar7 and Md Anam Raihan authored Feb 14, 2024
1 parent 9045214 commit 205201f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,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.49.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 2.4.0 |
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.49.0, < 2.0.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 2.4.0, < 3.0.0 |

### Modules

Expand Down
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 {
# Use "greater than or equal to" range in modules
ibm = {
source = "IBM-Cloud/ibm"
version = ">= 1.49.0"
version = ">= 1.49.0, < 2.0.0"
}
local = {
source = "hashicorp/local"
version = ">= 2.4.0"
version = ">= 2.4.0, < 3.0.0"
}
}
}

0 comments on commit 205201f

Please sign in to comment.