-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudfront.tf
83 lines (70 loc) · 2.45 KB
/
cloudfront.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
data "aws_cloudfront_cache_policy" "cache_optimized" {
name = "Managed-CachingOptimized"
}
data "aws_cloudfront_origin_request_policy" "origin_cors" {
name = "Managed-CORS-S3Origin"
}
resource "aws_cloudfront_origin_access_control" "s3" {
name = "s3"
origin_access_control_origin_type = "s3"
signing_behavior = "always"
signing_protocol = "sigv4"
}
resource "aws_cloudfront_distribution" "s3_distribution" {
origin {
origin_id = "s3-default"
domain_name = aws_s3_bucket.s3_bucket.bucket_regional_domain_name
origin_access_control_id = aws_cloudfront_origin_access_control.s3.id
}
aliases = [local.domain_name]
enabled = true
is_ipv6_enabled = true
default_root_object = local.index_page
viewer_certificate {
acm_certificate_arn = aws_acm_certificate.website.arn
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1.2_2021"
}
price_class = "PriceClass_100"
wait_for_deployment = false
default_cache_behavior {
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "s3-default"
cache_policy_id = data.aws_cloudfront_cache_policy.cache_optimized.id
origin_request_policy_id = data.aws_cloudfront_origin_request_policy.origin_cors.id
viewer_protocol_policy = "redirect-to-https"
compress = true
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
custom_error_response {
error_caching_min_ttl = 300
error_code = 403
response_code = 404
response_page_path = local.error_page
}
}
resource "aws_route53_record" "website_ipv4" {
zone_id = data.aws_route53_zone.main.zone_id
name = local.domain_name
type = "A"
alias {
name = aws_cloudfront_distribution.s3_distribution.domain_name
zone_id = aws_cloudfront_distribution.s3_distribution.hosted_zone_id
evaluate_target_health = false
}
}
resource "aws_route53_record" "website_ipv6" {
zone_id = data.aws_route53_zone.main.zone_id
name = local.domain_name
type = "AAAA"
alias {
name = aws_cloudfront_distribution.s3_distribution.domain_name
zone_id = aws_cloudfront_distribution.s3_distribution.hosted_zone_id
evaluate_target_health = false
}
}