Terraform v0.12.6
provider "helm" {
home = "${path.root}/.helm"
}
data "helm_repository" "stable" {
name = "stable"
url = "https://kubernetes-charts.storage.googleapis.com"
}
data "helm_repository" "rimusz" {
name = "rimusz"
url = "https://charts.rimusz.net"
}
https://gist.github.com/duxet/15005bbd91393462f9c9328f7a0cd47a
.helm/repository/cache/ path should be used for repository cache
repository cache path gets "duplicated": .helm/repository/cache/.helm/repository/cache/ and breaks repository data loading process
terraform plan
home = "${path.root}/.helm" configuration was working fine with Terraform 0.11
home = "${abspath(path.root)}/.helm" works fine, so looks like home cannot be set to relative path with Terraform 0.12
Closing this issue since is making reference to a version based on Helm 2, if this is still valid to the master branch please reopen it. Thanks.
I'm going to lock this issue because it has been closed for _30 days_ ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!
Most helpful comment
home = "${abspath(path.root)}/.helm"works fine, so looks likehomecannot be set to relative path with Terraform 0.12