terraform-provider-helm: Helm Chart for "stable/instana-agent" not working with terraform 0.13
Hello together,
we just wanted to install instana-agent chart via terraform. Unfortunately we always get the following error:
Error: failed to download “https://kubernetes-charts.storage.googleapis.com/instana-agent-1.0.30.tgz” (hint: running helm repo update may help)
on 03_service-mesh/instana.tf line 11, in resource “helm_release” “instana-agent”: 11: resource “helm_release” “instana-agent” {
I’ve already read other threads about such issues and tried several things like verify=false but nothing helped to solve the issue.
Attached you will find a screenshot with the terraform resource. Does someone has an idea what’s wrong there?

These are our provider versions:
required_providers { google = { version = “3.36.0” source = “hashicorp/google” } google-beta = { version = “3.36.0” source = “hashicorp/google-beta” } kubectl = { version = “1.6.2” source = “hashicorp/kubectl” } helm = { version = “1.2.3” source = “hashicorp/helm” } kubernetes = { version = “1.12.0” source = “hashicorp/kubernetes” } }
In case of any further detail needed, please contact me.
Thanks in advance!
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Comments: 20 (5 by maintainers)
Commits related to this issue
- Add helm version requirement to README #567 — committed to hashicorp/terraform-provider-helm by aareet 4 years ago
Possible Workaround
If I run
helm repo updateevery time before runningterraform apply, it does not throw any error.Also, error seems to be on Windows OS only.