From ef29b3ba129ab6f29e6e7f5c998e2026997e65aa Mon Sep 17 00:00:00 2001 From: lcaggio Date: Tue, 25 Oct 2022 09:06:58 +0200 Subject: [PATCH] Fix template path. --- .../data-solutions/gcs-to-bq-with-least-privileges/outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/data-solutions/gcs-to-bq-with-least-privileges/outputs.tf b/blueprints/data-solutions/gcs-to-bq-with-least-privileges/outputs.tf index 141e424b..eed3052b 100644 --- a/blueprints/data-solutions/gcs-to-bq-with-least-privileges/outputs.tf +++ b/blueprints/data-solutions/gcs-to-bq-with-least-privileges/outputs.tf @@ -47,7 +47,7 @@ output "command_01_gcs" { output "command_02_dataflow" { description = "Command to run Dataflow template impersonating the service account." - value = templatefile("${path.module}/dataflow.tftpl", { + value = templatefile("${path.module}/templates/dataflow.tftpl", { sa_orch_email = module.service-account-orch.email project_id = module.project.project_id region = var.region @@ -68,7 +68,7 @@ output "command_02_dataflow" { output "command_03_bq" { description = "BigQuery command to query imported data." - value = templatefile("${path.module}/bigquery.tftpl", { + value = templatefile("${path.module}/templates/bigquery.tftpl", { project_id = module.project.project_id bigquery_dataset = module.bigquery-dataset.dataset_id bigquery_table = module.bigquery-dataset.tables["person"].table_id