Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit a6d1eb2

Browse files
authored
fix: updated required IBM provider version to >= 1.61.0, <2.0.0 to pickup fix for [this](IBM-Cloud/terraform-provider-ibm#4931) provider issue (#89)
1 parent 7e9a1eb commit a6d1eb2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ You need the following permissions to run this module.
5858
| Name | Version |
5959
|------|---------|
6060
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0, <1.6.0 |
61-
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.56.1, < 2.0.0 |
61+
| <a name="requirement_ibm"></a> [ibm](#requirement\_ibm) | >= 1.61.0, <2.0.0 |
6262
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.9.1 |
6363

6464
### Modules

examples/basic/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.56.1"
7+
version = "1.61.0"
88
}
99
}
1010
}

examples/complete/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">= 1.56.1"
7+
version = ">= 1.61.0, <2.0.0"
88
}
99
}
1010
}

examples/fscloud/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">= 1.56.1"
7+
version = ">= 1.61.0, <2.0.0"
88
}
99
}
1010
}

version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# Use "greater than or equal to" range in modules
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = ">= 1.56.1, < 2.0.0"
7+
version = ">= 1.61.0, <2.0.0"
88
}
99
time = {
1010
source = "hashicorp/time"

0 commit comments

Comments
 (0)