-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
25 lines (25 loc) · 952 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
output "bigquery_project_id" {
description = "ID of the Google cloud project e.g. 'rugged-abacus-218110', 'apply-for-qts-in-england'..."
value = data.google_project.main.project_id
}
output "bigquery_table_name" {
description = "Biquery events table name"
value = local.gcp_table_name
}
output "bigquery_dataset" {
description = "Bigquery dataset name"
value = local.gcp_dataset_name
}
output "google_cloud_credentials" {
description = "Credentials for Google workload identity federation"
value = local.gcp_credentials
}
output "variables_map" {
description = "Map of environment variables required for dfe-analytics. Merge with application configuration secrets."
value = {
BIGQUERY_PROJECT_ID = data.google_project.main.project_id
BIGQUERY_TABLE_NAME = local.gcp_table_name
BIGQUERY_DATASET = local.gcp_dataset_name
GOOGLE_CLOUD_CREDENTIALS = local.gcp_credentials
}
}