-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
201 lines (164 loc) · 4.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
variable "root_domain" {
type = string
description = "The RACTF root domain"
}
variable "cloud_domain" {
type = string
description = "The RACTF Cloud domain"
}
variable "staging_domain" {
type = string
description = "The RACTF staging domain"
}
variable "ractf_shortener_domain" {
type = string
description = "The RACTF Shortener domain"
}
variable "aws_region" {
type = string
description = "Region to deploy AWS resources to"
}
variable "cloudflare_email" {
type = string
}
variable "cloudflare_api_key" {
type = string
}
variable "shortener_endpoint" {
type = string
description = "The IP of the host the RACTF shortener is running on"
}
variable "ractf_host" {
type = string
description = "The IP of the host the RACTF backend is running on"
}
variable "mail_host" {
type = string
description = "The IP of the host the RACTF email services are running on"
}
variable "google_token" {
type = list(string)
description = "Google verification token"
}
variable "github_token" {
type = string
description = "GitHub verification token"
}
variable "deploy_account" {
type = string
description = "The ARN of the S3 deploy account"
}
variable "staging_endpoint" {
type = string
description = "The IP of the staging server"
}
variable "status_endpoint" {
type = string
description = "The DNS name of the statuspage"
}
variable "h1_token_production" {
type = string
description = "HackerOne verification token for Production"
}
variable "h1_token_staging" {
type = string
description = "HackerOne verification token for Staging"
}
variable "dkim_key" {
type = string
description = "DKIM token from mail server"
}
variable "cloud_google_token" {
type = list(string)
description = "Google verification token for Cloud"
}
variable "cloud_github_token" {
type = string
description = "GitHub verification token for Cloud"
}
variable "vault_bucket" {
type = string
description = "The name of the bucket for Vault"
}
variable "deployments" {
type = map(object({ name = string, domain = string, container_registry = bool }))
description = "Events running on the RACTF site"
}
variable "consul_host" {
type = string
description = "The host running the Consul and Nomad proxies"
default = ""
}
variable "consul_address" {
type = string
description = "The host running Consul"
default = ""
}
variable "consul_token" {
type = string
description = "ACL token for Consul"
default = ""
}
variable "consul_auth" {
type = string
description = "HTTP Auth credentials for Consul"
default = ""
}
variable "consul_cert" {
type = string
description = "PEM encoded certificate for mTLS"
default = ""
}
variable "consul_key" {
type = string
description = "PEM encoded key for mTLS"
default = ""
}
variable "nomad_address" {
type = string
description = "The host running Nomad"
default = ""
}
variable "nomad_token" {
type = string
description = "ACL token for Consul"
default = ""
}
variable "new_relic_id" {
type = number
description = "ID of New Relic account"
default = 1
}
variable "new_relic_key" {
type = string
description = "Key for New Relic account"
default = ""
}
variable "discord_url" {
type = string
description = "Webhook for Discord alerting"
default = ""
}
variable "mail_frontend" {
type = string
description = "The IP of the host the RACTF mail frontend is running on"
default = ""
}
variable "atlassian_token" {
type = string
description = "The verification token for Atlassian"
default = ""
}
variable "dmarc_record" {
type = string
description = "The DMARC record"
default = ""
}
variable "ractf_domains" {
type = list(string)
description = "A list of the RACTF domains"
}
variable "careers_endpoint" {
type = string
description = "The endpoint running the RACTF Careers site"
}