-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
36 lines (30 loc) · 1.28 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
output "replicator_sa_email" {
value = module.replicator_sa.sa_email
description = "Replicator service account email."
}
output "replicator_sa_credentials_json" {
description = "Replicator service account key in credentials.json format, base64 encoded."
value = module.replicator_sa.sa_key
sensitive = true
}
output "replicator_manual_setup" {
description = "Replicator service account setup information."
value = module.replicator_sa.replicator_manual_setup
}
output "kraken_sa_email" {
value = module.kraken_sa.sa_email
description = "Kraken service account email."
}
output "kraken_sa_credentials_json" {
description = "Kraken service account key in credentials.json format, base64 encoded."
value = module.kraken_sa.sa_key
sensitive = true
}
output "cloud_billing_export_table_name" {
description = "The BigQuery table name containing the GCP Cloud Billing BigQuery export."
value = "${var.cloud_billing_export_project_id}.${var.cloud_billing_export_dataset_id}.${var.cloud_billing_export_table_id}"
}
output "carbon_footprint_export_table_name" {
description = "The BigQuery table name containing the GCP Carbon Footprint BigQuery export."
value = try(module.carbon_export[0].carbon_footprint_export_table_name, null)
}