-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
27 lines (23 loc) · 855 Bytes
/
variables.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
variable "billing_account_ids" {
type = string
description = "billing account ID or a comma-separated list of billing account IDs."
nullable = false
}
variable "cloud_carbon_footprint_project_id" {
type = string
description = "Project ID used for hosting BigQuery cloud carbon footprint datasets."
nullable = false
}
/* -------------------------------- Optionals ------------------------------- */
variable "cloud_carbon_footprint_export_dataset_id" {
type = string
default = "cloud_carbon_footprint_export"
description = "Dataset ID used for the cloud carbon footprint export."
nullable = false
}
variable "cloud_carbon_footprint_dataset_location" {
type = string
default = "eu"
description = "Location used for BigQuery CLoud Carbon Footprint datasets."
nullable = false
}