Skip to content

Commit 30949c4

Browse files
authored
fix: add workaround for provider breaking change (#278)
1 parent bf076bc commit 30949c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/resources/version.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ terraform {
22
required_version = ">= 1.0.0"
33
required_providers {
44
ibm = {
5-
source = "ibm-cloud/ibm"
6-
version = ">= 1.49.0, < 2.0.0"
5+
source = "ibm-cloud/ibm"
6+
# lock into 1.75.2 until fix for https://github.com/IBM-Cloud/terraform-provider-ibm/issues/6036 is released
7+
version = "1.75.2"
78
}
89
}
910
}

0 commit comments

Comments
 (0)