From 0f9fe97b0aa8ec6ccf67fd4125e183deb0aa3cf5 Mon Sep 17 00:00:00 2001 From: Huseyin Akten Date: Mon, 9 Mar 2020 20:25:40 -0500 Subject: [PATCH] local-file moved to .charts --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index d7425bd..3e305c3 100644 --- a/main.tf +++ b/main.tf @@ -38,7 +38,7 @@ data "template_file" "chart_values_template" { ## local_file.deployment_values will create the file output path.module/.cache/values.yaml resource "local_file" "deployment_values" { content = "${trimspace(data.template_file.chart_values_template.rendered)}" - filename = "${path.module}/.cache/values.yaml" + filename = "charts/.cache/${var.deployment_name}-values.yaml" } locals {