File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -98,11 +98,11 @@ output "routine_ids" {
9898output "env_vars" {
9999 value = {
100100 " BIGQUERY_DATASET" = google_bigquery_dataset.main.dataset_id
101- " BIGQUERY_TABLES" = join ( " , " , [for table in google_bigquery_table . main : table . table_id ])
102- " BIGQUERY_VIEWS" = join ( " , " , [for table in google_bigquery_table . view : table . table_id ])
103- " BIGQUERY_MATERIALIZED_VIEWS" = join ( " , " , [for table in google_bigquery_table . materialized_view : table . table_id ])
104- " BIGQUERY_EXTERNAL_TABLES" = join ( " , " , [for table in google_bigquery_table . external_table : table . table_id ])
105- " BIGQUERY_ROUTINES" = join ( " , " , [for routine in google_bigquery_routine . routine : routine . routine_id ])
101+ " BIGQUERY_TABLES" = jsonencode ( [for table in google_bigquery_table . main : table . table_id ])
102+ " BIGQUERY_VIEWS" = jsonencode ( [for table in google_bigquery_table . view : table . table_id ])
103+ " BIGQUERY_MATERIALIZED_VIEWS" = jsonencode ( [for table in google_bigquery_table . materialized_view : table . table_id ])
104+ " BIGQUERY_EXTERNAL_TABLES" = jsonencode ( [for table in google_bigquery_table . external_table : table . table_id ])
105+ " BIGQUERY_ROUTINES" = jsonencode ( [for routine in google_bigquery_routine . routine : routine . routine_id ])
106106 }
107107 description = " Exported environment variables"
108108}
You can’t perform that action at this time.
0 commit comments