-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
141 lines (122 loc) · 3.72 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
##########################################################
# Announce my.cdn.domain CDN Certificate
data "aws_acm_certificate" "my_certificate" {
domain = "${var.main["cdn_domain"]}"
statuses = ["ISSUED"]
}
##########################################################
# Create Bucket For my.cdn.domain
resource "aws_s3_bucket" "my_bucket" {
bucket = "${var.main["bucket_name"]}"
acl = "private"
region = "${var.region}"
tags {
Name = "${var.main["bucket_name"]}"
}
policy = <<EOF
{
"Id": "Policy1516899566603",
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1516899563175",
"Action": "s3:GetObject",
"Effect": "Allow",
"Resource": "arn:aws:s3:::${var.main["bucket_name"]}/*",
"Principal": "*"
}
]
}
EOF
website {
index_document = "index.html"
error_document = "error.html"
}
}
# Create index.html file And Redirect to my.rdr.domain
resource "aws_s3_bucket_object" "index_file" {
bucket = "${aws_s3_bucket.my_bucket.id}"
acl = "private"
source = "/dev/null"
key = "index.html"
content_type = "text/html"
website_redirect = "${var.main["rdr_domain"]}"
}
# Create error.html file And Redirect to my.rdr.domain
resource "aws_s3_bucket_object" "error_file" {
bucket = "${aws_s3_bucket.my_bucket.id}"
acl = "private"
source = "/dev/null"
key = "error.html"
content_type = "text/html"
website_redirect = "${var.main["rdr_domain"]}"
}
# Create file.name And Its Content
resource "aws_s3_bucket_object" "target_file" {
bucket = "${aws_s3_bucket.my_bucket.id}"
acl = "private"
source = "files/target.file"
key = "target.file"
content_type = "text/html"
}
##########################################################
# Create CDN For my.rdr.domain
resource "aws_cloudfront_distribution" "my_cdn" {
origin {
domain_name = "${aws_s3_bucket.my_bucket.website_endpoint}"
origin_id = "CDN for ${var.main["bucket_name"]}"
custom_origin_config {
origin_protocol_policy = "http-only"
http_port = "80"
https_port = "443"
origin_ssl_protocols = ["TLSv1.1"]
}
}
enabled = true
is_ipv6_enabled = true
comment = "CDN for ${var.main["cdn_domain"]}"
aliases = ["${var.main["cdn_domain"]}"]
default_cache_behavior {
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "${var.main["bucket_name"]}"
compress = "True"
min_ttl = 0
default_ttl = 86400
max_ttl = 31536000
viewer_protocol_policy = "redirect-to-https"
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
}
price_class = "PriceClass_All"
viewer_certificate {
cloudfront_default_certificate = "false"
acm_certificate_arn = "${data.aws_acm_certificate.my_certificate.arn}"
minimum_protocol_version = "TLSv1.1_2016"
ssl_support_method = "sni-only"
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
}
##########################################################
# Create my.cdn.domain Public Domain Zone
resource "aws_route53_zone" "my_dns_zone" {
name = "${var.main["cdn_domain"]}"
}
resource "aws_route53_record" "my_domain" {
zone_id = "${aws_route53_zone.my_dns_zone.zone_id}"
name = "${var.main["cdn_domain"]}"
type = "A"
alias {
name = "${aws_cloudfront_distribution.my_cdn.domain_name}"
zone_id = "${aws_cloudfront_distribution.my_cdn.hosted_zone_id}"
evaluate_target_health = false
}
}