Skip to content

Commit 3356ce8

Browse files
authored
fix(terraform): pin helm provider to ~> 2.7 (#69)
* fix(terraform): pin helm provider to ~> 2.7 Changed helm provider version constraint from ">= 2.7" to "~> 2.7" in versions.tf for better compatibility and to avoid unexpected upgrades. * fix(terraform): update helm provider version constraint Changed the Helm provider version constraint in versions.tf to use ">= 2.0.0, < 3.0.0" instead of "~> 2.7" for broader compatibility with Helm 2.x releases. This ensures compatibility with all minor versions within the 2.x range.
1 parent 540d4a5 commit 3356ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99
helm = {
1010
source = "hashicorp/helm"
11-
version = ">= 2.7"
11+
version = ">= 2.0.0, < 3.0.0"
1212
}
1313
utils = {
1414
source = "cloudposse/utils"

0 commit comments

Comments
 (0)