Skip to content

Commit

Permalink
fix: updates required provider version constraints to prevent major u…
Browse files Browse the repository at this point in the history
…pdates (#733)

Co-authored-by: Md Anam Raihan <Md.Anam.Raihan@ibm.com>
  • Loading branch information
iamar7 and Md Anam Raihan committed Feb 16, 2024
1 parent 651ca52 commit da75636
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 @@ -101,8 +101,8 @@ To attach access management tags to resources in this module, you need the follo
| 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.59.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
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.59.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 da75636

Please sign in to comment.