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
|
terraform {
backend "s3" {
bucket = "terraform.grimoire"
key = "bliki.tfstate"
region = "ca-central-1"
}
}
provider "aws" {
region = "ca-central-1"
}
# CloudFront needs certificates in us-east-1.
provider "aws" {
alias = "cloudfront"
region = "us-east-1"
}
resource "aws_s3_bucket" "bliki" {
bucket = "grimoire.ca"
tags = {
Project = "bliki"
}
}
resource "aws_s3_bucket_website_configuration" "bliki" {
bucket = aws_s3_bucket.bliki.id
index_document {
suffix = "index.html"
}
}
resource "aws_s3_bucket_policy" "bliki" {
bucket = aws_s3_bucket.bliki.id
policy = <<POLICY
{
"Version":"2012-10-17",
"Statement":[
{
"Effect":"Allow",
"Principal": "*",
"Action": ["s3:GetObject"],
"Resource": ["${aws_s3_bucket.bliki.arn}/*"]
}
]
}
POLICY
}
resource "aws_acm_certificate" "bliki" {
provider = aws.cloudfront
# There's a circular dependency between the zone, the distribution, and the
# cert here. Rather than trying to figure out how to make Terraform solve it,
# hard-code the domain name.
domain_name = "grimoire.ca"
validation_method = "DNS"
tags = {
Project = "bliki"
}
}
resource "aws_route53_record" "bliki_validation" {
for_each = {
for dvo in aws_acm_certificate.bliki.domain_validation_options :
dvo.domain_name => {
name = dvo.resource_record_name
record = dvo.resource_record_value
type = dvo.resource_record_type
}
}
zone_id = data.aws_route53_zone.grimoire_ca.zone_id
ttl = 60
name = each.value.name
type = each.value.type
records = [
each.value.record,
]
}
resource "aws_cloudfront_distribution" "bliki" {
provider = aws.cloudfront
enabled = true
is_ipv6_enabled = true
aliases = ["grimoire.ca"]
default_root_object = "index.html"
price_class = "PriceClass_100"
origin {
origin_id = "bliki"
# Use the website endpoint, not the bucket endpoint, to get / -> /index.html
# translation through S3's website config.
domain_name = aws_s3_bucket_website_configuration.bliki.website_endpoint
custom_origin_config {
http_port = 80
https_port = 443
# Because the origin is a non-URL-safe bucket name, S3's default TLS
# config doesn't apply. Since we can't provide our own cert, force HTTP.
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["TLSv1.2"]
}
}
default_cache_behavior {
target_origin_id = "bliki"
allowed_methods = ["GET", "HEAD", "OPTIONS"]
cached_methods = ["GET", "HEAD"]
viewer_protocol_policy = "redirect-to-https"
compress = true
min_ttl = 0
default_ttl = 900
max_ttl = 3600
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
viewer_certificate {
acm_certificate_arn = aws_acm_certificate.bliki.arn
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1"
}
tags = {
Project = "bliki"
}
}
data "aws_route53_zone" "grimoire_ca" {
name = "grimoire.ca"
}
|