forked from cloudposse/terraform-aws-cloudfront-s3-cdn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
612 lines (509 loc) · 22.9 KB
/
main.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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
locals {
enabled = module.this.enabled
# Encapsulate logic here so that it is not lost/scattered among the configuration
website_enabled = local.enabled && var.website_enabled
website_password_enabled = local.website_enabled && var.s3_website_password_enabled
s3_origin_enabled = local.enabled && ! var.website_enabled
create_s3_origin_bucket = local.enabled && var.origin_bucket == null
s3_access_logging_enabled = local.enabled && (var.s3_access_logging_enabled == null ? length(var.s3_access_log_bucket_name) > 0 : var.s3_access_logging_enabled)
create_cf_log_bucket = local.cloudfront_access_logging_enabled && local.cloudfront_access_log_create_bucket
create_cloudfront_origin_access_identity = local.enabled && length(compact([var.cloudfront_origin_access_identity_iam_arn])) == 0 # "" or null
origin_id = module.this.id
origin_path = coalesce(var.origin_path, "/")
# Collect the information for whichever S3 bucket we are using as the origin
origin_bucket_placeholder = {
arn = ""
bucket = ""
website_domain = ""
website_endpoint = ""
bucket_regional_domain_name = ""
}
origin_bucket_options = {
new = local.create_s3_origin_bucket ? aws_s3_bucket.origin[0] : null
existing = local.enabled && var.origin_bucket != null ? data.aws_s3_bucket.origin[0] : null
disabled = local.origin_bucket_placeholder
}
# Workaround for requirement that tertiary expression has to have exactly matching objects in both result values
origin_bucket = local.origin_bucket_options[local.enabled ? (local.create_s3_origin_bucket ? "new" : "existing") : "disabled"]
# Collect the information for cloudfront_origin_access_identity_iam and shorten the variable names
cf_access_options = {
new = local.create_cloudfront_origin_access_identity ? {
arn = aws_cloudfront_origin_access_identity.default[0].iam_arn
path = aws_cloudfront_origin_access_identity.default[0].cloudfront_access_identity_path
} : null
existing = {
arn = var.cloudfront_origin_access_identity_iam_arn
path = var.cloudfront_origin_access_identity_path
}
}
cf_access = local.cf_access_options[local.create_cloudfront_origin_access_identity ? "new" : "existing"]
# Pick the IAM policy document based on whether the origin is an S3 origin or a Website origin
iam_policy_document = local.enabled ? (
local.website_enabled ? data.aws_iam_policy_document.s3_website_origin[0].json : data.aws_iam_policy_document.s3_origin[0].json
) : ""
bucket = local.origin_bucket.bucket
bucket_domain_name = var.website_enabled ? local.origin_bucket.website_endpoint : local.origin_bucket.bucket_regional_domain_name
override_origin_bucket_policy = local.enabled && var.override_origin_bucket_policy
lookup_cf_log_bucket = local.cloudfront_access_logging_enabled && ! local.cloudfront_access_log_create_bucket
cf_log_bucket_domain = local.cloudfront_access_logging_enabled ? (
local.lookup_cf_log_bucket ? data.aws_s3_bucket.cf_logs[0].bucket_domain_name : module.logs.bucket_domain_name
) : ""
use_default_acm_certificate = var.acm_certificate_arn == ""
minimum_protocol_version = var.minimum_protocol_version == "" ? (local.use_default_acm_certificate ? "TLSv1" : "TLSv1.2_2019") : var.minimum_protocol_version
website_config = {
redirect_all = [
{
redirect_all_requests_to = var.redirect_all_requests_to
}
]
default = [
{
index_document = var.index_document
error_document = var.error_document
routing_rules = var.routing_rules
}
]
}
}
## Make up for deprecated template_file and lack of templatestring
# https://github.com/hashicorp/terraform-provider-template/issues/85
# https://github.com/hashicorp/terraform/issues/26838
locals {
override_policy = replace(replace(replace(var.additional_bucket_policy,
"$${origin_path}", local.origin_path),
"$${bucket_name}", local.bucket),
"$${cloudfront_origin_access_identity_iam_arn}", local.cf_access.arn)
}
data "aws_partition" "current" {
count = local.enabled ? 1 : 0
}
module "origin_label" {
source = "cloudposse/label/null"
version = "0.25.0"
attributes = var.extra_origin_attributes
context = module.this.context
}
resource "aws_cloudfront_origin_access_identity" "default" {
count = local.create_cloudfront_origin_access_identity ? 1 : 0
comment = local.origin_id
}
resource "random_password" "referer" {
count = local.website_password_enabled ? 1 : 0
length = 32
special = false
}
data "aws_iam_policy_document" "s3_origin" {
count = local.s3_origin_enabled ? 1 : 0
override_json = local.override_policy
statement {
sid = "S3GetObjectForCloudFront"
actions = ["s3:GetObject"]
resources = ["arn:${join("", data.aws_partition.current.*.partition)}:s3:::${local.bucket}${local.origin_path}*"]
principals {
type = "AWS"
identifiers = [local.cf_access.arn]
}
}
statement {
sid = "S3ListBucketForCloudFront"
actions = ["s3:ListBucket"]
resources = ["arn:${join("", data.aws_partition.current.*.partition)}:s3:::${local.bucket}"]
principals {
type = "AWS"
identifiers = [local.cf_access.arn]
}
}
}
data "aws_iam_policy_document" "s3_website_origin" {
count = local.website_enabled ? 1 : 0
override_json = local.override_policy
statement {
sid = "S3GetObjectForCloudFront"
actions = ["s3:GetObject"]
resources = ["arn:${join("", data.aws_partition.current.*.partition)}:s3:::${local.bucket}${local.origin_path}*"]
principals {
type = "AWS"
identifiers = ["*"]
}
dynamic "condition" {
for_each = local.website_password_enabled ? ["password"] : []
content {
test = "StringEquals"
variable = "aws:referer"
values = [random_password.referer[0].result]
}
}
}
}
data "aws_iam_policy_document" "deployment" {
for_each = local.enabled ? var.deployment_principal_arns : {}
statement {
actions = var.deployment_actions
resources = distinct(flatten([
[local.origin_bucket.arn],
formatlist("${local.origin_bucket.arn}/%s*", each.value),
]))
principals {
type = "AWS"
identifiers = [each.key]
}
}
}
data "aws_iam_policy_document" "s3_ssl_only" {
count = var.allow_ssl_requests_only ? 1 : 0
statement {
sid = "ForceSSLOnlyAccess"
effect = "Deny"
actions = ["s3:*"]
resources = [
local.origin_bucket.arn,
"${local.origin_bucket.arn}/*"
]
principals {
identifiers = ["*"]
type = "*"
}
condition {
test = "Bool"
values = ["false"]
variable = "aws:SecureTransport"
}
}
}
data "aws_iam_policy_document" "combined" {
count = local.enabled ? 1 : 0
source_policy_documents = compact(concat(
data.aws_iam_policy_document.s3_origin.*.json,
data.aws_iam_policy_document.s3_website_origin.*.json,
data.aws_iam_policy_document.s3_ssl_only.*.json,
values(data.aws_iam_policy_document.deployment)[*].json
))
}
resource "aws_s3_bucket_policy" "default" {
count = local.create_s3_origin_bucket || local.override_origin_bucket_policy ? 1 : 0
bucket = local.origin_bucket.bucket
policy = join("", data.aws_iam_policy_document.combined.*.json)
}
resource "aws_s3_bucket" "origin" {
#bridgecrew:skip=BC_AWS_S3_13:Skipping `Enable S3 Bucket Logging` because we cannot enable it by default because we do not have a default destination for it.
#bridgecrew:skip=CKV_AWS_52:Skipping `Ensure S3 bucket has MFA delete enabled` due to issue in terraform (https://github.com/hashicorp/terraform-provider-aws/issues/629).
#bridgecrew:skip=BC_AWS_NETWORKING_52:Skipping `Ensure S3 Bucket has public access blocks` because we have an `aws_s3_bucket_public_access_block` resource rather than inline `block_public_*` attributes.
#bridgecrew:skip=BC_AWS_GENERAL_72:Skipping `Ensure S3 bucket has cross-region replication enabled` because this is out of scope of this module's use case.
#bridgecrew:skip=BC_AWS_GENERAL_56:Skipping `Ensure S3 buckets are encrypted with KMS by default` because this module has configurable encryption via `var.encryption_enabled`.
count = local.create_s3_origin_bucket ? 1 : 0
bucket = module.origin_label.id
acl = "private"
tags = module.origin_label.tags
force_destroy = var.origin_force_destroy
dynamic "server_side_encryption_configuration" {
for_each = var.encryption_enabled ? ["true"] : []
content {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
}
versioning {
enabled = var.versioning_enabled
}
dynamic "logging" {
for_each = local.s3_access_log_bucket_name != "" ? [1] : []
content {
target_bucket = local.s3_access_log_bucket_name
target_prefix = coalesce(var.s3_access_log_prefix, "logs/${local.origin_id}/")
}
}
dynamic "website" {
for_each = var.website_enabled ? local.website_config[var.redirect_all_requests_to == "" ? "default" : "redirect_all"] : []
content {
error_document = lookup(website.value, "error_document", null)
index_document = lookup(website.value, "index_document", null)
redirect_all_requests_to = lookup(website.value, "redirect_all_requests_to", null)
routing_rules = lookup(website.value, "routing_rules", null)
}
}
dynamic "cors_rule" {
for_each = distinct(compact(concat(var.cors_allowed_origins, var.aliases, var.external_aliases)))
content {
allowed_headers = var.cors_allowed_headers
allowed_methods = var.cors_allowed_methods
allowed_origins = [cors_rule.value]
expose_headers = var.cors_expose_headers
max_age_seconds = var.cors_max_age_seconds
}
}
}
resource "aws_s3_bucket_public_access_block" "origin" {
count = (local.create_s3_origin_bucket || local.override_origin_bucket_policy) && var.block_origin_public_access_enabled ? 1 : 0
bucket = local.bucket
block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
# Don't modify this bucket in two ways at the same time, S3 API will complain.
depends_on = [aws_s3_bucket_policy.default]
}
resource "aws_s3_bucket_ownership_controls" "origin" {
count = local.create_s3_origin_bucket ? 1 : 0
bucket = local.bucket
rule {
object_ownership = var.s3_object_ownership
}
depends_on = [time_sleep.wait_for_aws_s3_bucket_settings]
}
# Workaround for S3 eventual consistency for settings relating to objects
resource "time_sleep" "wait_for_aws_s3_bucket_settings" {
count = local.create_s3_origin_bucket ? 1 : 0
create_duration = "30s"
destroy_duration = "30s"
depends_on = [aws_s3_bucket_public_access_block.origin, aws_s3_bucket_policy.default]
}
module "logs" {
source = "cloudposse/s3-log-storage/aws"
version = "0.26.0"
enabled = local.create_cf_log_bucket
attributes = var.extra_logs_attributes
lifecycle_prefix = local.cloudfront_access_log_prefix
standard_transition_days = var.log_standard_transition_days
glacier_transition_days = var.log_glacier_transition_days
expiration_days = var.log_expiration_days
force_destroy = var.origin_force_destroy
versioning_enabled = var.log_versioning_enabled
context = module.this.context
}
data "aws_s3_bucket" "origin" {
count = local.enabled && (var.origin_bucket != null) ? 1 : 0
bucket = var.origin_bucket
}
data "aws_s3_bucket" "cf_logs" {
count = local.lookup_cf_log_bucket ? 1 : 0
bucket = var.cloudfront_access_log_bucket_name
}
resource "aws_cloudfront_distribution" "default" {
#bridgecrew:skip=BC_AWS_GENERAL_27:Skipping `Ensure CloudFront distribution has WAF enabled` because AWS WAF is indeed configurable and is managed via `var.web_acl_id`.
#bridgecrew:skip=BC_AWS_NETWORKING_63:Skipping `Verify CloudFront Distribution Viewer Certificate is using TLS v1.2` because the minimum TLS version for the viewer certificate is indeed configurable and is managed via `var.minimum_protocol_version`.
#bridgecrew:skip=BC_AWS_NETWORKING_65:Skipping `Ensure CloudFront distribution has a strict security headers policy attached` because the response header policy is indeed configurable and is managed via `var.response_headers_policy_id`.
count = local.enabled ? 1 : 0
enabled = var.distribution_enabled
is_ipv6_enabled = var.ipv6_enabled
comment = var.comment
default_root_object = var.default_root_object
price_class = var.price_class
depends_on = [aws_s3_bucket.origin]
dynamic "logging_config" {
for_each = local.cloudfront_access_logging_enabled ? ["true"] : []
content {
include_cookies = local.cloudfront_access_log_include_cookies
bucket = local.cf_log_bucket_domain
prefix = local.cloudfront_access_log_prefix
}
}
aliases = var.acm_certificate_arn != "" ? concat(var.aliases, var.external_aliases) : []
dynamic "origin_group" {
for_each = var.origin_groups
content {
origin_id = "${module.this.id}-group[${origin_group.key}]"
failover_criteria {
status_codes = origin_group.value.failover_criteria
}
member {
# the following enables the use case of specifying an origin group with the origin created by this module as the
# primary origin in the group, prior to the creation of this module.
origin_id = try(length(origin_group.value.primary_origin_id), 0) > 0 ? origin_group.value.primary_origin_id : local.origin_id
}
member {
origin_id = origin_group.value.failover_origin_id
}
}
}
origin {
domain_name = local.bucket_domain_name
origin_id = local.origin_id
origin_path = var.origin_path
dynamic "s3_origin_config" {
for_each = ! var.website_enabled ? [1] : []
content {
origin_access_identity = local.cf_access.path
}
}
dynamic "custom_origin_config" {
for_each = var.website_enabled ? [1] : []
content {
http_port = 80
https_port = 443
origin_protocol_policy = "http-only"
origin_ssl_protocols = var.origin_ssl_protocols
}
}
dynamic "custom_header" {
for_each = local.website_password_enabled ? concat([{ name = "referer", value = random_password.referer[0].result }], var.custom_origin_headers) : var.custom_origin_headers
content {
name = custom_header.value["name"]
value = custom_header.value["value"]
}
}
}
dynamic "origin" {
for_each = var.custom_origins
content {
domain_name = origin.value.domain_name
origin_id = origin.value.origin_id
origin_path = lookup(origin.value, "origin_path", "")
dynamic "custom_header" {
for_each = lookup(origin.value, "custom_headers", [])
content {
name = custom_header.value["name"]
value = custom_header.value["value"]
}
}
custom_origin_config {
http_port = lookup(origin.value.custom_origin_config, "http_port", 80)
https_port = lookup(origin.value.custom_origin_config, "https_port", 443)
origin_protocol_policy = lookup(origin.value.custom_origin_config, "origin_protocol_policy", "https-only")
origin_ssl_protocols = lookup(origin.value.custom_origin_config, "origin_ssl_protocols", ["TLSv1.2"])
origin_keepalive_timeout = lookup(origin.value.custom_origin_config, "origin_keepalive_timeout", 60)
origin_read_timeout = lookup(origin.value.custom_origin_config, "origin_read_timeout", 60)
}
}
}
dynamic "origin" {
for_each = var.s3_origins
content {
domain_name = origin.value.domain_name
origin_id = origin.value.origin_id
origin_path = lookup(origin.value, "origin_path", "")
s3_origin_config {
# the following enables specifying the origin_access_identity used by the origin created by this module, prior to the module's creation:
origin_access_identity = try(length(origin.value.s3_origin_config.origin_access_identity), 0) > 0 ? origin.value.s3_origin_config.origin_access_identity : local.cf_access.path
}
}
}
viewer_certificate {
acm_certificate_arn = var.acm_certificate_arn
ssl_support_method = local.use_default_acm_certificate ? null : "sni-only"
minimum_protocol_version = local.minimum_protocol_version
cloudfront_default_certificate = local.use_default_acm_certificate
}
default_cache_behavior {
allowed_methods = var.allowed_methods
cached_methods = var.cached_methods
cache_policy_id = var.cache_policy_id
origin_request_policy_id = var.origin_request_policy_id
target_origin_id = local.origin_id
compress = var.compress
trusted_signers = var.trusted_signers
trusted_key_groups = var.trusted_key_groups
response_headers_policy_id = var.response_headers_policy_id
dynamic "forwarded_values" {
# If a cache policy or origin request policy is specified,
# we cannot include a `forwarded_values` block at all in the API request.
for_each = (var.cache_policy_id != null || var.origin_request_policy_id != null) ? [] : [true]
content {
query_string = var.forward_query_string
query_string_cache_keys = var.query_string_cache_keys
headers = var.forward_header_values
cookies {
forward = var.forward_cookies
}
}
}
viewer_protocol_policy = var.viewer_protocol_policy
default_ttl = (var.cache_policy_id != null || var.origin_request_policy_id != null) ? 0 : var.default_ttl
min_ttl = (var.cache_policy_id != null || var.origin_request_policy_id != null) ? 0 : var.min_ttl
max_ttl = (var.cache_policy_id != null || var.origin_request_policy_id != null) ? 0 : var.max_ttl
realtime_log_config_arn = var.realtime_log_config_arn
dynamic "lambda_function_association" {
for_each = var.lambda_function_association
content {
event_type = lambda_function_association.value.event_type
include_body = lookup(lambda_function_association.value, "include_body", null)
lambda_arn = lambda_function_association.value.lambda_arn
}
}
dynamic "function_association" {
for_each = var.function_association
content {
event_type = function_association.value.event_type
function_arn = function_association.value.function_arn
}
}
}
dynamic "ordered_cache_behavior" {
for_each = var.ordered_cache
content {
path_pattern = ordered_cache_behavior.value.path_pattern
allowed_methods = ordered_cache_behavior.value.allowed_methods
cached_methods = ordered_cache_behavior.value.cached_methods
target_origin_id = ordered_cache_behavior.value.target_origin_id == "" ? local.origin_id : ordered_cache_behavior.value.target_origin_id
compress = ordered_cache_behavior.value.compress
trusted_signers = ordered_cache_behavior.value.trusted_signers
trusted_key_groups = ordered_cache_behavior.value.trusted_key_groups
cache_policy_id = ordered_cache_behavior.value.cache_policy_id
origin_request_policy_id = ordered_cache_behavior.value.origin_request_policy_id
dynamic "forwarded_values" {
# If a cache policy or origin request policy is specified, we cannot include a `forwarded_values` block at all in the API request
for_each = (ordered_cache_behavior.value.cache_policy_id != null || ordered_cache_behavior.value.origin_request_policy_id != null) ? [] : [true]
content {
query_string = ordered_cache_behavior.value.forward_query_string
headers = ordered_cache_behavior.value.forward_header_values
cookies {
forward = ordered_cache_behavior.value.forward_cookies
whitelisted_names = ordered_cache_behavior.value.forward_cookies_whitelisted_names
}
}
}
viewer_protocol_policy = ordered_cache_behavior.value.viewer_protocol_policy
default_ttl = (ordered_cache_behavior.value.cache_policy_id != null || ordered_cache_behavior.value.origin_request_policy_id != null) ? 0 : ordered_cache_behavior.value.default_ttl
min_ttl = (ordered_cache_behavior.value.cache_policy_id != null || ordered_cache_behavior.value.origin_request_policy_id != null) ? 0 : ordered_cache_behavior.value.min_ttl
max_ttl = (ordered_cache_behavior.value.cache_policy_id != null || ordered_cache_behavior.value.origin_request_policy_id != null) ? 0 : ordered_cache_behavior.value.max_ttl
response_headers_policy_id = ordered_cache_behavior.value.response_headers_policy_id
dynamic "lambda_function_association" {
for_each = try(ordered_cache_behavior.value.lambda_function_association, [])
content {
event_type = lambda_function_association.value.event_type
include_body = lookup(lambda_function_association.value, "include_body", null)
lambda_arn = lambda_function_association.value.lambda_arn
}
}
dynamic "function_association" {
for_each = try(ordered_cache_behavior.value.function_association, [])
content {
event_type = function_association.value.event_type
function_arn = function_association.value.function_arn
}
}
}
}
restrictions {
geo_restriction {
restriction_type = var.geo_restriction_type
locations = var.geo_restriction_locations
}
}
dynamic "custom_error_response" {
for_each = var.custom_error_response
content {
error_caching_min_ttl = lookup(custom_error_response.value, "error_caching_min_ttl", null)
error_code = custom_error_response.value.error_code
response_code = lookup(custom_error_response.value, "response_code", null)
response_page_path = lookup(custom_error_response.value, "response_page_path", null)
}
}
web_acl_id = var.web_acl_id
wait_for_deployment = var.wait_for_deployment
tags = module.this.tags
}
module "dns" {
source = "cloudposse/route53-alias/aws"
version = "0.13.0"
enabled = (local.enabled && var.dns_alias_enabled)
aliases = var.aliases
parent_zone_id = var.parent_zone_id
parent_zone_name = var.parent_zone_name
target_dns_name = try(aws_cloudfront_distribution.default[0].domain_name, "")
target_zone_id = try(aws_cloudfront_distribution.default[0].hosted_zone_id, "")
ipv6_enabled = var.ipv6_enabled
context = module.this.context
}