-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tf
More file actions
123 lines (103 loc) · 3.36 KB
/
main.tf
File metadata and controls
123 lines (103 loc) · 3.36 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
resource "aws_cloudfront_function" "redirect" {
name = "${var.name}-redirect"
runtime = "cloudfront-js-2.0"
comment = "redirect function"
publish = true
code = var.function_code
}
resource "aws_cloudfront_distribution" "cdn" {
origin {
domain_name = var.fake_origin
origin_id = "origin"
custom_origin_config {
http_port = "80"
https_port = "443"
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["TLSv1", "TLSv1.1", "TLSv1.2"]
}
dynamic custom_header {
for_each = var.edge_lambdas_variables
content {
name = "x-lambda-var-${replace(lower(custom_header.key), "_", "-")}"
value = custom_header.value
}
}
}
enabled = true
is_ipv6_enabled = true
comment = "Redirect ${var.name} Distribution"
aliases = [var.dns]
default_cache_behavior {
allowed_methods = ["HEAD", "DELETE", "POST", "GET", "OPTIONS", "PUT", "PATCH"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "origin"
forwarded_values {
query_string = true
headers = ["Origin"]
cookies {
forward = "all"
}
}
viewer_protocol_policy = "redirect-to-https"
min_ttl = 0
default_ttl = 0
max_ttl = 86400
compress = true
function_association {
event_type = "viewer-request"
function_arn = aws_cloudfront_function.redirect.arn
}
dynamic "lambda_function_association" {
for_each = {for i,l in var.edge_lambdas: "lambda-${i}" => l}
content {
event_type = lambda_function_association.value.event_type
lambda_arn = lambda_function_association.value.lambda_arn
include_body = lambda_function_association.value.include_body
}
}
}
price_class = var.price_class
restrictions {
geo_restriction {
restriction_type = length(var.geolocations) == 0 ? "none" : "whitelist"
locations = length(var.geolocations) == 0 ? null : var.geolocations
}
}
tags = {
}
viewer_certificate {
acm_certificate_arn = aws_acm_certificate_validation.cert.certificate_arn
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1"
}
}
resource "aws_route53_record" "cdn" {
zone_id = var.dns_zone
name = var.dns
type = "A"
alias {
name = aws_cloudfront_distribution.cdn.domain_name
zone_id = aws_cloudfront_distribution.cdn.hosted_zone_id
evaluate_target_health = false
}
}
resource "aws_acm_certificate" "cert" {
domain_name = var.dns
validation_method = "DNS"
provider = aws.acm
lifecycle {
create_before_destroy = true
}
}
resource "aws_route53_record" "cert_validation" {
name = element(tolist(aws_acm_certificate.cert.domain_validation_options), 0).resource_record_name
type = element(tolist(aws_acm_certificate.cert.domain_validation_options), 0).resource_record_type
zone_id = var.dns_zone
records = [element(tolist(aws_acm_certificate.cert.domain_validation_options), 0).resource_record_value]
ttl = 60
}
resource "aws_acm_certificate_validation" "cert" {
provider = aws.acm
certificate_arn = aws_acm_certificate.cert.arn
validation_record_fqdns = [aws_route53_record.cert_validation.fqdn]
}