-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
389 lines (322 loc) · 9.66 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# Joinmastodon
variable "name" {
description = "Name of the fastly service (defaults to hostname)."
type = string
default = ""
}
variable "hostname" {
description = "Hostname the service points to."
type = string
}
variable "default_ttl" {
description = "The default Time-to-live (TTL) for requests."
type = number
default = 300
}
variable "backend_name" {
description = "Optional name for the backend."
type = string
default = ""
}
variable "ssl_hostname" {
description = "Hostname to use for SSL verification (if different from 'hostname')."
type = string
default = ""
}
variable "backend_address" {
description = "Address to use for connecting to the backend. Can be a hostname or an IP address."
type = string
}
variable "backend_port" {
description = "The port number on which the Backend responds."
type = number
default = 443
}
variable "shield_region" {
description = "Which Fastly shield region to use. Should correspond with the shield code."
type = string
}
variable "healthcheck_host" {
description = "Host to ping for healthcheck. Defaults to hostname."
type = string
default = ""
}
variable "healthcheck_name" {
description = "Optional name for the healthcheck."
type = string
default = ""
}
variable "healthcheck_path" {
description = "URL to use when doing a healthcheck."
type = string
default = "/"
}
variable "healthcheck_method" {
description = "HTTP method to use when doing a healthcheck."
type = string
default = "GET"
validation {
condition = contains(["CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "TRACE"], var.healthcheck_method)
error_message = "Healthcheck method must be a valid HTTP method"
}
}
variable "healthcheck_expected_response" {
description = "Response to expect from a healthy endpoint."
type = number
default = 200
}
variable "force_tls_hsts" {
description = "Force TLS and HTTP Strict Transport Security (HSTS) to ensure that every request is secure."
type = bool
default = true
}
variable "hsts_duration" {
description = "Number of seconds for the client to remember only to use HTTPS."
type = number
default = 31536000
}
variable "gzip_default_policy" {
description = "Whether to enable Fastly's default gzip policy"
type = bool
default = true
}
variable "product_enablement" {
description = "Which additional Fastly products to enable for this service."
type = object({
brotli_compression = optional(bool, false)
domain_inspector = optional(bool, false)
image_optimizer = optional(bool, false)
origin_inspector = optional(bool, false)
websockets = optional(bool, false)
})
default = {
brotli_compression = false
domain_inspector = false
image_optimizer = false
origin_inspector = false
websockets = false
}
}
variable "purge_auth" {
description = "Whether to require API tokens when subimtting HTTP PURGE requests"
type = bool
default = true
}
variable "datadog" {
description = "Whether to send logging info to Datadog"
type = bool
default = false
}
variable "datadog_token" {
description = "API key from Datadog."
type = string
default = ""
sensitive = true
}
variable "datadog_service" {
description = "Datadog service name to use for logs"
type = string
default = "fastly"
}
variable "datadog_region" {
description = "The region that log data will be sent to."
type = string
default = "EU"
validation {
condition = contains(["US", "EU"], var.datadog_region)
error_message = "Datadog region must be either US or EU."
}
}
# API
variable "api_name" {
description = "Name of the fastly service (defaults to hostname)."
type = string
default = ""
}
variable "api_hostname" {
description = "Hostname the service points to."
type = string
default = ""
}
variable "api_default_ttl" {
description = "The default Time-to-live (TTL) for requests."
type = number
default = 300
}
variable "api_backend_name" {
description = "Optional name for the backend."
type = string
default = ""
}
variable "api_ssl_hostname" {
description = "Hostname to use for SSL verification (if different from 'hostname')."
type = string
default = ""
}
variable "api_backend_address" {
description = "Address to use for connecting to the backend. Can be a hostname or an IP address."
type = string
}
variable "api_backend_port" {
description = "The port number on which the Backend responds."
type = number
default = 443
}
variable "api_backend_ca_cert" {
description = "CA cert to use when connecting to the backend."
type = string
sensitive = true
}
variable "api_shield_region" {
description = "Which Fastly shield region to use (if different than main shield region). Should correspond with the shield code."
type = string
default = ""
}
variable "api_healthcheck_host" {
description = "Host to ping for healthcheck. Defaults to hostname."
type = string
default = ""
}
variable "api_healthcheck_name" {
description = "Optional name for the healthcheck."
type = string
default = ""
}
variable "api_healthcheck_path" {
description = "URL to use when doing a healthcheck."
type = string
default = "/.well-known/health"
}
variable "api_healthcheck_method" {
description = "HTTP method to use when doing a healthcheck."
type = string
default = "GET"
validation {
condition = contains(["CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "TRACE"], var.api_healthcheck_method)
error_message = "Healthcheck method must be a valid HTTP method"
}
}
variable "api_healthcheck_expected_response" {
description = "Response to expect from a healthy endpoint."
type = number
default = 200
}
variable "api_force_tls_hsts" {
description = "Force TLS and HTTP Strict Transport Security (HSTS) to ensure that every request is secure."
type = bool
default = true
}
variable "api_hsts_duration" {
description = "Number of seconds for the client to remember only to use HTTPS."
type = number
default = 31557600
}
variable "api_purge_auth" {
description = "Whether to require API tokens when subimtting HTTP PURGE requests"
type = bool
default = true
}
variable "api_datadog" {
description = "Whether to send logging info to Datadog"
type = bool
default = false
}
variable "api_datadog_service" {
description = "Datadog service name to use for logs"
type = string
default = "fastly"
}
# Proxy
variable "proxy_name" {
description = "Name of the fastly service (defaults to hostname)."
type = string
default = ""
}
variable "proxy_hostname" {
description = "Hostname the service points to."
type = string
default = ""
}
variable "proxy_default_ttl" {
description = "The default Time-to-live (TTL) for requests."
type = number
default = 300
}
variable "proxy_backend_name" {
description = "Optional name for the backend."
type = string
default = ""
}
variable "proxy_ssl_hostname" {
description = "Hostname to use for SSL verification (if different from 'hostname')."
type = string
default = ""
}
variable "proxy_backend_address" {
description = "Address to use for connecting to the backend. Can be a hostname or an IP address."
type = string
}
variable "proxy_backend_port" {
description = "The port number on which the Backend responds."
type = number
default = 443
}
variable "proxy_shield_region" {
description = "Which Fastly shield region to use (if different than main shield region). Should correspond with the shield code."
type = string
default = ""
}
variable "proxy_healthcheck_host" {
description = "Host to ping for healthcheck. Defaults to hostname."
type = string
default = ""
}
variable "proxy_healthcheck_name" {
description = "Optional name for the healthcheck."
type = string
default = ""
}
variable "proxy_healthcheck_path" {
description = "URL to use when doing a healthcheck."
type = string
default = "/"
}
variable "proxy_healthcheck_method" {
description = "HTTP method to use when doing a healthcheck."
type = string
default = "HEAD"
validation {
condition = contains(["CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "TRACE"], var.proxy_healthcheck_method)
error_message = "Healthcheck method must be a valid HTTP method"
}
}
variable "proxy_healthcheck_expected_response" {
description = "Response to expect from a healthy endpoint."
type = number
default = 404
}
variable "proxy_force_tls_hsts" {
description = "Force TLS and HTTP Strict Transport Security (HSTS) to ensure that every request is secure."
type = bool
default = true
}
variable "proxy_hsts_duration" {
description = "Number of seconds for the client to remember only to use HTTPS."
type = number
default = 31557600
}
variable "proxy_purge_auth" {
description = "Whether to require API tokens when subimtting HTTP PURGE requests"
type = bool
default = true
}
variable "proxy_datadog" {
description = "Whether to send logging info to Datadog"
type = bool
default = false
}
variable "proxy_datadog_service" {
description = "Datadog service name to use for logs"
type = string
default = "fastly"
}