From 4512e7e59d95b6b8a7b33938db85ad2e334b38bc Mon Sep 17 00:00:00 2001 From: Ludovico Magnocavallo Date: Fri, 14 Jan 2022 17:55:12 +0100 Subject: [PATCH] Update main.tf --- .../gcs-to-bq-with-least-privileges/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/data-solutions/gcs-to-bq-with-least-privileges/main.tf b/examples/data-solutions/gcs-to-bq-with-least-privileges/main.tf index 6735ed73f..f0133151c 100644 --- a/examples/data-solutions/gcs-to-bq-with-least-privileges/main.tf +++ b/examples/data-solutions/gcs-to-bq-with-least-privileges/main.tf @@ -44,7 +44,7 @@ module "project" { "roles/storage.objectViewer" = [ module.service-account-orch.iam_email, ], - #Bigquery roles + # BigQuery roles "roles/bigquery.admin" = concat([ module.service-account-orch.iam_email, ], var.data_eng_principals @@ -65,7 +65,7 @@ module "project" { module.service-account-bq.iam_email, module.service-account-df.iam_email ] - #Common roles + # common roles "roles/logging.logWriter" = [ module.service-account-bq.iam_email, module.service-account-landing.iam_email, @@ -85,7 +85,7 @@ module "project" { "roles/viewer" = concat( var.data_eng_principals ) - #Dataflow roles + # Dataflow roles "roles/dataflow.admin" = concat([ module.service-account-orch.iam_email, ], var.data_eng_principals @@ -93,7 +93,7 @@ module "project" { "roles/dataflow.worker" = [ module.service-account-df.iam_email, ] - #Network roles + # network roles "roles/compute.networkUser" = [ module.service-account-df.iam_email, "serviceAccount:${module.project.service_accounts.robots.dataflow}"