-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
37 lines (31 loc) · 1009 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
28
29
30
31
32
33
34
35
36
37
# Input Variables
# https://www.terraform.io/language/values/variables
variable "datadog_api_key" {
description = "Datadog API key"
type = string
sensitive = true
}
variable "datadog_app_key" {
description = "Datadog APP key"
type = string
sensitive = true
}
variable "datadog_enable" {
description = "Enable Datadog integration"
type = bool
default = false
}
variable "primary_domain" {
description = "The main domain associated with your Google Workspace account. By default, your users get a username at this domain"
type = string
default = "osinfra.io"
}
variable "project_billing_account" {
description = "The alphanumeric ID of the billing account this project belongs to"
type = string
default = "01C550-A2C86B-B8F16B"
}
variable "project_folder_id" {
description = "The numeric ID of the folder this project should be created under. Only one of `org_id` or `folder_id` may be specified"
type = string
}