-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
34 lines (28 loc) · 937 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
26
27
28
29
30
31
32
33
34
output "dataset_id" {
value = module.bigquery.dataset_id
description = "Unique id for the dataset being provisioned"
}
output "dataset_name" {
value = module.bigquery.dataset_name
description = "Friendly name for the dataset being provisioned"
}
output "dataset_project" {
value = module.bigquery.dataset_project
description = "Project where the dataset and table are created"
}
output "table_id" {
value = module.bigquery.table_id
description = "Unique id for the table being provisioned"
}
output "table_name" {
value = module.bigquery.table_name
description = "Friendly name for the table being provisioned"
}
output "dataset_labels" {
value = module.bigquery.dataset_labels
description = "Key value pairs in a map for dataset labels"
}
output "table_labels" {
value = module.bigquery.table_labels
description = "Key value pairs in a map for table labels"
}