Skip to content

Commit 4fbc889

Browse files
iamar7Md Anam Raihan
andauthored
fix(deps): updated required provider constraints to not allow major version updates (#305)
Co-authored-by: Md Anam Raihan <[email protected]>
1 parent b981100 commit 4fbc889

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ You need the following permissions to run this module.
4949
| Name | Version |
5050
|------|---------|
5151
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 |
52-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.61.0, <2.0.0 |
53-
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
52+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.61.0, < 2.0.0 |
53+
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1, < 1.0.0 |
5454

5555
### Modules
5656

version.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ terraform {
44
# Use "greater than or equal to" range in modules
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">= 1.61.0, <2.0.0"
7+
version = ">= 1.61.0, < 2.0.0"
88
}
99
time = {
1010
source = "hashicorp/time"
11-
version = ">= 0.9.1"
11+
version = ">= 0.9.1, < 1.0.0"
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)