Skip to content

Commit 7b6ebea

Browse files
Felix Ziegermeshkodiak[bot]
authored andcommitted
docs: include cloud_billing_export_table_name in examples
1 parent 5b7c19d commit 7b6ebea

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

examples/basic-gcp-integration/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ module "meshplatform" {
2828

2929
# required for kraken
3030
cloud_billing_export_project_id = "..."
31+
cloud_billing_export_dataset_id = "..."
32+
cloud_billing_export_table_id = "..."
3133
}

examples/basic-gcp-integration/outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@ output "kraken_sa_key" {
1313
description = "Kraken service account key."
1414
value = module.meshplatform.kraken_sa_key
1515
sensitive = true
16-
}
16+
}
17+
18+
output "cloud_billing_export_table_name" {
19+
description = "The BigQuery table name containing the GCP Cloud Billing BigQuery export."
20+
value = module.meshplatform.cloud_billing_export_table_name
21+
}

examples/gcp-integration-lz-access-gdm-templates/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ module "meshplatform" {
2828

2929
# required for kraken
3030
cloud_billing_export_project_id = "..."
31+
cloud_billing_export_dataset_id = "..."
32+
cloud_billing_export_table_id = "..."
3133
}
3234

3335
# Details of the parameters are in the module structure input description (module README.md)

examples/gcp-integration-lz-access-gdm-templates/outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,9 @@ output "kraken_sa_key" {
1313
description = "Kraken service account key."
1414
value = module.meshplatform.kraken_sa_key
1515
sensitive = true
16-
}
16+
}
17+
18+
output "cloud_billing_export_table_name" {
19+
description = "The BigQuery table name containing the GCP Cloud Billing BigQuery export."
20+
value = module.meshplatform.cloud_billing_export_table_name
21+
}

0 commit comments

Comments
 (0)