Skip to content

Commit 5531065

Browse files
shemauSteve Peggs
andauthored
fix: relax the provider version checking in submodules (#100)
Submodules lock the version and prevent consumers upgrading. Relax the version checking in submodules. Co-authored-by: Steve Peggs <[email protected]>
1 parent 00c0896 commit 5531065

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cbr-rule-module/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.49.0"
7+
version = ">= 1.49.0"
88
}
99
}
1010
}

cbr-zone-module/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.49.0"
7+
version = ">= 1.49.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)