aws-ia / terraform-aws-mendix-private-cloud

This AWS Partner Solution uses Terraform to deploy a Mendix infrastructure in the AWS Cloud.
Apache License 2.0
12 stars 14 forks source link

Error: could not download chart: path "./charts/mendix-installer" not found #17

Closed kyleliu2020 closed 1 year ago

kyleliu2020 commented 1 year ago

When I run this as terraform module with the Provision Instructions, it reports error: │ Error: could not download chart: path "./charts/mendix-installer" not found │ │ with module.mendix-private-cloud.helm_release.mendix_installer, │ on .terraform/modules/mendix-private-cloud/main.tf line 168, in resource "helm_release" "mendix_installer": │ 168: resource "helm_release" "mendix_installer" {

Work around solution: after update .terraform/modules/mendix-private-cloud/main.tf Line 170 from chart = "./charts/mendix-installer" to chart = "${path.module}/charts/mendix-installer" then the error disappear.

geoffreyme commented 1 year ago

Hi @kyleliu2020, thank for finding out this. Created this PR https://github.com/aws-ia/terraform-aws-mendix-private-cloud/pull/18 to fix this issue.