-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
72 lines (62 loc) · 1.75 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# 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 "dns_records_admins" {
description = "The set of service accounts that can administer DNS records in this project"
type = set(string)
default = []
}
variable "private_record_sets" {
description = "Private DNS record sets"
type = list(object({
name = string
rrdatas = list(string)
type = string
ttl = number
}))
default = []
}
variable "project_billing_account" {
description = "The alphanumeric ID of the billing account this project belongs to"
type = string
default = "01C550-A2C86B-B8F16B"
}
variable "project_cis_2_2_logging_sink_project_id" {
description = "The CIS 2.2 logging sink benchmark project ID"
type = string
}
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
}
variable "public_record_sets" {
description = "Private DNS record sets"
type = list(object({
name = string
rrdatas = list(string)
type = string
ttl = number
}))
default = []
}
variable "vpc_service_projects" {
description = "The map of Kubernetes service project IDs and numbers (The number should only be added if the project is a Kubernetes service project)"
type = map(object({
number = optional(number)
}))
default = {}
}