-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
149 lines (121 loc) · 3.3 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
# -----------------------------------------------------
# Provider
# -----------------------------------------------------
terraform {
required_version = ">= 1.2.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
provider "aws" {
region = "us-east-1"
}
# -----------------------------------------------------
# S3 Bucket
# -----------------------------------------------------
resource "aws_s3_bucket" "s3_bucket" {
bucket = var.domain_name
tags = var.tags
}
# -----------------------------------------------------
# S3 Bucket Policy
# -----------------------------------------------------
data "aws_iam_policy_document" "s3_bucket_policy" {
statement {
sid = "1"
actions = [
"s3:GetObject",
]
resources = [
"arn:aws:s3:::${var.domain_name}/*",
]
principals {
type = "AWS"
identifiers = [
aws_cloudfront_origin_access_identity.origin_access_identity.iam_arn,
]
}
}
}
resource "aws_s3_bucket_policy" "s3_bucket_policy" {
bucket = aws_s3_bucket.s3_bucket.id
policy = data.aws_iam_policy_document.s3_bucket_policy.json
}
# -----------------------------------------------------
# S3 Bucket Website Configuration
# -----------------------------------------------------
resource "aws_s3_bucket_website_configuration" "s3_bucket" {
bucket = aws_s3_bucket.s3_bucket.id
index_document {
suffix = "index.html"
}
error_document {
key = "404.html"
}
}
# -----------------------------------------------------
# Cloudfront Distribution
# -----------------------------------------------------
resource "aws_cloudfront_distribution" "s3_distribution" {
depends_on = [
aws_s3_bucket.s3_bucket
]
origin {
domain_name = aws_s3_bucket.s3_bucket.bucket_regional_domain_name
origin_id = "s3-cloudfront"
s3_origin_config {
origin_access_identity = aws_cloudfront_origin_access_identity.origin_access_identity.cloudfront_access_identity_path
}
}
enabled = true
is_ipv6_enabled = true
default_root_object = "index.html"
default_cache_behavior {
allowed_methods = [
"GET",
"HEAD",
]
cached_methods = [
"GET",
"HEAD",
]
target_origin_id = "s3-cloudfront"
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
viewer_protocol_policy = "redirect-to-https"
min_ttl = var.cloudfront_min_ttl
default_ttl = var.cloudfront_default_ttl
max_ttl = var.cloudfront_max_ttl
}
price_class = var.price_class
restrictions {
geo_restriction {
restriction_type = var.cloudfront_geo_restriction_restriction_type
locations = []
}
}
viewer_certificate {
cloudfront_default_certificate = true
}
custom_error_response {
error_code = 403
response_code = 200
error_caching_min_ttl = 0
response_page_path = "/index.html"
}
wait_for_deployment = false
tags = var.tags
}
# -----------------------------------------------------
# Cloudfront Origin Access Identity
# -----------------------------------------------------
resource "aws_cloudfront_origin_access_identity" "origin_access_identity" {
comment = "access-identity-${var.domain_name}.s3.amazonaws.com"
}