-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
230 lines (194 loc) · 7.2 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
*# aws-terraform-cloudfront_s3_origin
*
*This modules creates an AWS CloudFront distribution with S3 origin
*
*## Basic Usage
*
*```
*module "cloudfront_s3_origin" {
* source = "[email protected]:rackspace-infrastructure-automation/aws-terraform-cloudfront_s3_origin//?ref=v0.0.3"
* domain_name = "${aws_s3_bucket.cloudfront_s3bucket.bucket_regional_domain_name}"
* origin_id = "${random_string.cloudfront_rstring.result}"
* enabled = true
* comment = "This is a test comment"
* default_root_object = "index.html"
*
* # logging config
* # Bucket must already exist, can't be generated as a resource along with example.
* # This is a TF bug.
* # The bucket name must be the full bucket ie bucket.s3.amazonaws.com
* bucket = "mybucket.s3.amazonaws.com"
*
* prefix = "myprefix"
* bucket_logging = true
*
* aliases = ["testdomain.testing.example.com"]
*
* # Origin access id
* origin_access_identity = "${aws_cloudfront_origin_access_identity.origin_access_identity.cloudfront_access_identity_path}"
*
* # default cache behavior
* allowed_methods = ["GET", "HEAD"]
* cached_methods = ["GET", "HEAD"]
* path_pattern = "*"
* target_origin_id = "${random_string.cloudfront_rstring.result}"
*
* # Forwarded Values
* query_string = false
*
* #Cookies
* forward = "none"
*
* viewer_protocol_policy = "redirect-to-https"
* default_ttl = "3600"
*
* price_class = "PriceClass_200"
*
* # restrictions
* restriction_type = "whitelist"
* locations = ["US", "CA", "GB", "DE"]
*
* # Certificate
* cloudfront_default_certificate = true
*}
*```
*
* Full working references are available at [examples](examples)
*/
locals {
tags = {
Name = "${var.origin_id}"
ServiceProvider = "Rackspace"
Environment = "${var.environment}"
}
bucket_logging = {
enabled = [{
bucket = "${var.bucket}"
include_cookies = "${var.include_cookies}"
prefix = "${var.prefix}"
}]
disabled = "${list()}"
}
bucket_logging_config = "${var.bucket_logging ? "enabled" : "disabled"}"
active_trusted_signers = "${coalescelist(aws_cloudfront_distribution.cf_distribution_no_s3_origin_config.*.active_trusted_signers, aws_cloudfront_distribution.cf_distribution.*.active_trusted_signers, list(""))}"
}
resource "aws_cloudfront_distribution" "cf_distribution" {
count = "${var.origin_access_identity_provided ? 1 : 0}"
aliases = ["${var.aliases}"]
default_cache_behavior {
allowed_methods = "${var.allowed_methods}"
cached_methods = "${var.cached_methods}"
compress = "${var.compress}"
default_ttl = "${var.default_ttl}"
forwarded_values {
cookies {
forward = "${var.forward}"
whitelisted_names = "${var.whitelisted_names}"
}
headers = "${var.headers}"
query_string = "${var.query_string}"
query_string_cache_keys = "${var.query_string_cache_keys}"
}
# Removing this property due to issues dynamically providing these values. Will be reenabled
# after release of terraform v0.12 and support for dynamic config blocks.
#
# lambda_function_association = "${var.lambdas}"
max_ttl = "${var.max_ttl}"
min_ttl = "${var.min_ttl}"
smooth_streaming = "${var.smooth_streaming}"
target_origin_id = "${var.target_origin_id}"
trusted_signers = "${var.trusted_signers}"
viewer_protocol_policy = "${var.viewer_protocol_policy}"
}
comment = "${var.comment}"
default_root_object = "${var.default_root_object}"
enabled = "${var.enabled}"
http_version = "${var.http_version}"
is_ipv6_enabled = "${var.is_ipv6_enabled}"
logging_config = ["${local.bucket_logging[local.bucket_logging_config]}"]
custom_error_response = ["${var.custom_error_response}"]
origin {
domain_name = "${var.domain_name}"
custom_header = "${var.custom_header}"
origin_id = "${var.origin_id}"
origin_path = "${var.origin_path}"
s3_origin_config {
origin_access_identity = "${var.origin_access_identity}"
}
}
price_class = "${var.price_class}"
restrictions {
geo_restriction {
locations = "${var.locations}"
restriction_type = "${var.restriction_type}"
}
}
tags = "${merge(var.tags, local.tags)}"
viewer_certificate {
acm_certificate_arn = "${var.acm_certificate_arn}"
cloudfront_default_certificate = "${var.cloudfront_default_certificate}"
iam_certificate_id = "${var.iam_certificate_id}"
minimum_protocol_version = "${var.minimum_protocol_version}"
ssl_support_method = "${var.ssl_support_method}"
}
web_acl_id = "${var.web_acl_id}"
}
resource "aws_cloudfront_distribution" "cf_distribution_no_s3_origin_config" {
count = "${var.origin_access_identity_provided ? 0 : 1}"
aliases = ["${var.aliases}"]
default_cache_behavior {
allowed_methods = "${var.allowed_methods}"
cached_methods = "${var.cached_methods}"
compress = "${var.compress}"
default_ttl = "${var.default_ttl}"
forwarded_values {
cookies {
forward = "${var.forward}"
whitelisted_names = "${var.whitelisted_names}"
}
headers = "${var.headers}"
query_string = "${var.query_string}"
query_string_cache_keys = "${var.query_string_cache_keys}"
}
# Removing this property due to issues dynamically providing these values. Will be reenabled
# after release of terraform v0.12 and support for dynamic config blocks.
#
# lambda_function_association = "${var.lambdas}"
max_ttl = "${var.max_ttl}"
min_ttl = "${var.min_ttl}"
smooth_streaming = "${var.smooth_streaming}"
target_origin_id = "${var.target_origin_id}"
trusted_signers = "${var.trusted_signers}"
viewer_protocol_policy = "${var.viewer_protocol_policy}"
}
comment = "${var.comment}"
default_root_object = "${var.default_root_object}"
enabled = "${var.enabled}"
http_version = "${var.http_version}"
is_ipv6_enabled = "${var.is_ipv6_enabled}"
logging_config = ["${local.bucket_logging[local.bucket_logging_config]}"]
custom_error_response = ["${var.custom_error_response}"]
origin {
domain_name = "${var.domain_name}"
custom_header = "${var.custom_header}"
origin_id = "${var.origin_id}"
origin_path = "${var.origin_path}"
}
price_class = "${var.price_class}"
restrictions {
geo_restriction {
locations = "${var.locations}"
restriction_type = "${var.restriction_type}"
}
}
tags = "${merge(var.tags, local.tags)}"
viewer_certificate {
acm_certificate_arn = "${var.acm_certificate_arn}"
cloudfront_default_certificate = "${var.cloudfront_default_certificate}"
iam_certificate_id = "${var.iam_certificate_id}"
minimum_protocol_version = "${var.minimum_protocol_version}"
ssl_support_method = "${var.ssl_support_method}"
}
web_acl_id = "${var.web_acl_id}"
}