-
-
Notifications
You must be signed in to change notification settings - Fork 669
Expand file tree
/
Copy pathmain.tf
More file actions
437 lines (407 loc) · 11.7 KB
/
main.tf
File metadata and controls
437 lines (407 loc) · 11.7 KB
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
resource "fastly_service_vcl" "python_org" {
name = var.name
default_ttl = var.default_ttl
http3 = false
stale_if_error = false
stale_if_error_ttl = 43200
activate = true
domain {
name = var.domain
}
dynamic "domain" {
for_each = var.extra_domains
content {
name = domain.value
}
}
backend {
name = "cabotage"
address = var.backend_address
port = 443
shield = "iad-va-us"
auto_loadbalance = false
use_ssl = true
ssl_check_cert = true
ssl_cert_hostname = var.backend_address
ssl_sni_hostname = var.backend_address
weight = 100
max_conn = 200
connect_timeout = 1000
first_byte_timeout = 30000
between_bytes_timeout = 10000
override_host = var.subdomain == "www.test.python.org" ? "www.python.org" : null
}
backend {
name = "loadbalancer"
address = "lb.nyc1.psf.io"
port = 20004
shield = "lga-ny-us"
healthcheck = "HAProxy Status"
auto_loadbalance = false
use_ssl = true
ssl_check_cert = true
ssl_cert_hostname = "lb.psf.io"
ssl_sni_hostname = "lb.psf.io"
ssl_ca_cert = file("${path.module}/certs/psf.io.pem")
weight = 100
max_conn = 200
connect_timeout = 1000
first_byte_timeout = 15000
between_bytes_timeout = 10000
override_host = var.subdomain == "www.test.python.org" ? "www.python.org" : null
}
acl {
name = "Generated_by_IP_block_list"
force_destroy = false
}
cache_setting {
action = "pass"
cache_condition = "Force Pass No-Cache No-Store"
name = "Pass No-Cache No-Store"
stale_ttl = 0
ttl = 0
}
cache_setting {
action = "pass"
cache_condition = "Don't cache 404s for /static"
name = "No caching for /static 404s"
stale_ttl = 0
ttl = 0
}
condition {
name = "Force Pass No-Cache No-Store"
priority = 10
statement = "beresp.http.Cache-Control ~ \"(no-cache|no-store)\""
type = "CACHE"
}
condition {
name = "Generated by IP block list"
priority = 0
statement = "client.ip ~ Generated_by_IP_block_list"
type = "REQUEST"
}
condition {
name = "HSTS w/ subdomains"
priority = 10
statement = "req.http.host == \"${var.subdomain}\""
type = "RESPONSE"
}
condition {
name = "HSTS w/o subdomain"
priority = 10
statement = "req.http.host == \"${var.domain}\""
type = "RESPONSE"
}
condition {
name = "Homepage"
priority = 10
statement = "req.url.path ~ \"^/$\""
type = "REQUEST"
}
condition {
name = "Is Download"
priority = 10
statement = "req.url ~ \"^/ftp/\""
type = "REQUEST"
}
condition {
name = "Is Not Download"
priority = 5
statement = "req.url !~ \"^/ftp/\""
type = "REQUEST"
}
condition {
name = "Uncacheable URLs"
priority = 10
statement = "req.url ~ \"^/(api|admin)/\""
type = "REQUEST"
}
condition {
name = "apex redirect"
priority = 10
statement = "req.http.Host == \"python.org\""
type = "RESPONSE"
}
condition {
name = "apex"
priority = 1
statement = "req.http.host == \"python.org\""
type = "REQUEST"
}
condition {
name = "Always False"
priority = 10
statement = "false"
type = "RESPONSE"
}
condition {
name = "Don't cache 404s for /static"
priority = 10
statement = "req.url ~ \"^/static/\" && beresp.status == 404"
type = "CACHE"
}
gzip {
name = "Default rules"
content_types = [
"application/javascript",
"application/json",
"application/vnd.ms-fontobject",
"application/x-font-opentype",
"application/x-font-truetype",
"application/x-font-ttf",
"application/xml",
"font/eot",
"font/opentype",
"font/otf",
"image/svg+xml",
"image/vnd.microsoft.icon",
"text/css",
"text/html",
"text/javascript",
"text/plain",
"text/xml",
]
}
header {
action = "delete"
destination = "http.Cookie"
name = "Remove cookies"
priority = 10
request_condition = "Is Download"
type = "request"
}
header {
action = "set"
destination = "backend"
name = "Is Download Director"
priority = 10
request_condition = "Is Download"
source = "F_loadbalancer"
type = "request"
}
header {
action = "set"
destination = "backend"
name = "Is Not Download Backend"
priority = 10
request_condition = "Is Not Download"
source = "F_cabotage"
type = "request"
}
header {
action = "set"
destination = "http.Fastly-Token"
name = "Fastly Token"
priority = 10
source = "\"${var.fastly_header_token}\""
type = "request"
}
header {
action = "set"
destination = "http.Location"
name = "www redirect"
priority = 10
response_condition = "apex redirect"
source = "\"https://${var.subdomain}\" + req.url"
type = "response"
}
header {
action = "set"
destination = "http.Strict-Transport-Security"
name = "HSTS w/ subdomains"
priority = 10
response_condition = "HSTS w/ subdomains"
source = "\"max-age=63072000; includeSubDomains; preload\""
type = "response"
}
header {
action = "set"
destination = "http.Strict-Transport-Security"
name = "HSTS w/o subdomains"
priority = 10
response_condition = "HSTS w/o subdomain"
source = "\"max-age=315360000; preload\""
type = "response"
}
header {
action = "set"
destination = "url"
name = "Chop off query string"
priority = 10
request_condition = "Is Download"
source = "regsub(req.url, \"\\?.*$\", \"\")"
type = "request"
}
header {
action = "set"
destination = "url"
name = "Strip Query Strings"
priority = 10
request_condition = "Homepage"
source = "req.url.path"
type = "request"
}
healthcheck {
check_interval = 15000
expected_response = 200
host = var.domain
http_version = "1.1"
initial = 4
method = "HEAD"
name = "HAProxy Status"
path = "/_haproxy_status"
threshold = 3
timeout = 5000
window = 5
}
logging_datadog {
name = "ratelimit-debug"
token = var.datadog_key
region = "US"
response_condition = "Always False"
}
logging_s3 {
name = "psf-fastly-logs"
bucket_name = "psf-fastly-logs-eu-west-1"
domain = "s3-eu-west-1.amazonaws.com"
path = "/${replace(var.subdomain, ".", "-")}/%Y/%m/%d/"
period = 3600
gzip_level = 9
format = "%h \"%%{now}V\" %l \"%%{req.request}V %%{req.url}V\" %%{req.proto}V %>s %%{resp.http.Content-Length}V %%{resp.http.age}V \"%%{resp.http.x-cache}V\" \"%%{resp.http.x-cache-hits}V\" \"%%{req.http.content-type}V\" \"%%{req.http.accept-language}V\" \"%%{cstr_escape(req.http.user-agent)}V\""
timestamp_format = "%Y-%m-%dT%H:%M:%S.000"
redundancy = "standard"
format_version = 2
message_type = "classic"
s3_access_key = var.s3_logging_keys["access_key"]
s3_secret_key = var.s3_logging_keys["secret_key"]
}
logging_syslog {
name = "pythonorg"
address = "cdn-logs.nyc1.psf.io"
port = 514
format = "%h \"%%{now}V\" %l \"%%{req.request}V %%{req.url}V\" %%{req.proto}V %>s %%{resp.http.Content-Length}V %%{resp.http.age}V \"%%{resp.http.x-cache}V\" \"%%{resp.http.x-cache-hits}V\" \"%%{req.http.content-type}V\" \"%%{req.http.accept-language}V\" \"%%{cstr_escape(req.http.user-agent)}V\""
}
product_enablement {
bot_management = true
brotli_compression = false
domain_inspector = true
image_optimizer = false
origin_inspector = true
websockets = false
}
rate_limiter {
action = "log_only"
client_key = "client.ip"
feature_revision = 1
http_methods = "GET,PUT,TRACE,POST,HEAD,DELETE,PATCH,OPTIONS"
logger_type = "datadog"
name = "${var.domain} backends"
penalty_box_duration = 2
rps_limit = 10
window_size = 10
response {
content = <<-EOT
<html>
<head>
<title>Too Many Requests</title>
</head>
<body>
<p>Too Many Requests</p>
</body>
</html>
EOT
content_type = "text/html"
status = 429
}
}
request_setting {
action = null
bypass_busy_wait = false
force_ssl = true
max_stale_age = 86400
name = "Default cache policy"
xff = "append"
}
request_setting {
action = "pass"
bypass_busy_wait = false
force_ssl = false
max_stale_age = 60
name = "Force Pass"
request_condition = "Uncacheable URLs"
xff = "append"
}
response_object {
name = "www redirect"
request_condition = "apex"
response = "Moved Permanently"
status = 301
}
response_object {
content_type = "text/html"
name = "Generated by IP block list"
request_condition = "Generated by IP block list"
response = "Forbidden"
status = 403
}
dynamic "dictionary" {
for_each = var.activate_ngwaf_service ? [1] : []
content {
name = var.edge_security_dictionary
force_destroy = true
}
}
dynamic "dynamicsnippet" {
for_each = var.activate_ngwaf_service ? [1] : []
content {
name = "ngwaf_config_init"
type = "init"
priority = 0
}
}
dynamic "dynamicsnippet" {
for_each = var.activate_ngwaf_service ? [1] : []
content {
name = "ngwaf_config_miss"
type = "miss"
priority = 9000
}
}
dynamic "dynamicsnippet" {
for_each = var.activate_ngwaf_service ? [1] : []
content {
name = "ngwaf_config_pass"
type = "pass"
priority = 9000
}
}
dynamic "dynamicsnippet" {
for_each = var.activate_ngwaf_service ? [1] : []
content {
name = "ngwaf_config_deliver"
type = "deliver"
priority = 9000
}
}
lifecycle {
ignore_changes = [
product_enablement,
]
}
}
output "service_id" {
value = fastly_service_vcl.python_org.id
description = "The ID of the Fastly service"
}
output "backend_address" {
value = var.backend_address
description = "The backend address for the service."
}
output "service_name" {
value = var.name
description = "The name of the Fastly service"
}
output "domain" {
value = var.domain
description = "The domain of the Fastly service"
}