Skip to content

Commit 443c008

Browse files
authored
fix: add version constraint for helm provider (#672)
The helm provider 2.13.0 contains a bug that causes the example to fail with error such as `Error: path "./.tmp/us-west1-1.28.0-gke.3/bootstrap_helm_chart" not found` [0]. Add version contraint for the helm provider. [0] https://github.com/hashicorp/terraform-provider-helm/blob/main/CHANGELOG.md#2131-apr-15-2024
1 parent 59a0d19 commit 443c008

File tree

1 file changed

+2
-1
lines changed
  • anthos-attached-clusters/modules/attached-install-manifest

1 file changed

+2
-1
lines changed

anthos-attached-clusters/modules/attached-install-manifest/provider.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ terraform {
2121
version = ">=5.0.0"
2222
}
2323
helm = {
24-
source = "hashicorp/helm"
24+
source = "hashicorp/helm"
25+
version = ">=2.13.1"
2526
}
2627
}
2728
required_version = ">= 0.13"

0 commit comments

Comments
 (0)