-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.tf
280 lines (249 loc) · 9.28 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/**
* # aws-terraform-cloudfront_s3_origin
*
* This modules creates an AWS CloudFront distribution with S3 origin
* ### Enable Logging
* If you enable logging the bucket must already exist. You will get an error if you try
* to use a dynamic bucket like `"${aws_s3_bucket.cloudfront_log_s3bucket.bucket_domain_name}"`.
* You must use something like `bucket = "MyExistingbucket"`.
*
* ## Basic Usage
*
* ```
* module "cloudfront_s3_origin" {
* source = "git@github.com:rackspace-infrastructure-automation/aws-terraform-cloudfront_s3_origin//?ref=v0.12.1"
*
* allowed_methods = ["GET", "HEAD"]
* bucket_logging = false
* cached_methods = ["GET", "HEAD"]
* cloudfront_default_certificate = true
* comment = "This is a test comment"
* default_root_object = "index.html"
* default_ttl = 3600
* domain_name = aws_s3_bucket.cloudfront_s3bucket.bucket_regional_domain_name
* enabled = true
* forward = "none"
* locations = ["US", "CA", "GB", "DE"]
* origin_access_identity = aws_cloudfront_origin_access_identity.origin_access_identity.cloudfront_access_identity_path
* origin_access_identity_provided = true
* origin_id = random_string.cloudfront_rstring.result
* path_pattern = "*"
* price_class = "PriceClass_200"
* query_string = false
* restriction_type = "whitelist"
* target_origin_id = random_string.cloudfront_rstring.result
* viewer_protocol_policy = "redirect-to-https"
*
* custom_error_response = [
* {
* error_code = 404
* error_caching_min_ttl = 30
* },
* {
* error_code = 403
* error_caching_min_ttl = 30
* response_code = 200
* response_page_path = "/error_page.html"
* },
* ]
* }
* ```
*
* Full working references are available at [examples](examples)
*
* ## Terraform 0.12 upgrade
*
* Several changes were made while adding terraform 0.12 compatibility.
* The main change to be aware of is the `customer_header` variable
* changed types from `list(string)` to `list(map(string))` to properly function with dynamic
* configuration blocks.
*
* ## AWS Provider 3.0 upgrade
*
* Due to the property renaming, `active_trusted_signers` is now `trusted_signers` and the
* underlying property is an attribute driven map instead of the original list format
*/
terraform {
required_version = ">= 0.12"
required_providers {
aws = ">= 3.0.0"
}
}
locals {
tags = {
Name = var.origin_id
ServiceProvider = "Rackspace"
Environment = var.environment
}
bucket_logging = {
bucket = var.bucket
include_cookies = var.include_cookies
prefix = var.prefix
}
trusted_signers = coalescelist(
aws_cloudfront_distribution.cf_distribution_no_s3_origin_config.*.trusted_signers,
aws_cloudfront_distribution.cf_distribution.*.trusted_signers,
[""],
)
}
resource "aws_cloudfront_distribution" "cf_distribution" {
count = var.origin_access_identity_provided ? 1 : 0
aliases = var.aliases
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
price_class = var.price_class
tags = merge(var.tags, local.tags)
web_acl_id = var.web_acl_id
default_cache_behavior {
allowed_methods = var.allowed_methods
cached_methods = var.cached_methods
compress = var.compress
default_ttl = var.default_ttl
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
# 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}"
forwarded_values {
headers = var.headers
query_string = var.query_string
query_string_cache_keys = var.query_string_cache_keys
cookies {
forward = var.forward
whitelisted_names = var.whitelisted_names
}
}
}
dynamic "logging_config" {
for_each = var.bucket_logging ? [local.bucket_logging] : []
content {
bucket = logging_config.value.bucket
include_cookies = lookup(logging_config.value, "include_cookies", null)
prefix = lookup(logging_config.value, "prefix", null)
}
}
dynamic "custom_error_response" {
for_each = var.custom_error_response
content {
error_caching_min_ttl = lookup(custom_error_response.value, "error_caching_min_ttl", null)
error_code = custom_error_response.value.error_code
response_code = lookup(custom_error_response.value, "response_code", null)
response_page_path = lookup(custom_error_response.value, "response_page_path", null)
}
}
origin {
domain_name = var.domain_name
origin_id = var.origin_id
origin_path = var.origin_path
dynamic "custom_header" {
for_each = var.custom_header
content {
name = custom_header.value.name
value = custom_header.value.value
}
}
s3_origin_config {
origin_access_identity = var.origin_access_identity
}
}
restrictions {
geo_restriction {
locations = var.locations
restriction_type = var.restriction_type
}
}
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
}
}
resource "aws_cloudfront_distribution" "cf_distribution_no_s3_origin_config" {
count = var.origin_access_identity_provided ? 0 : 1
aliases = var.aliases
price_class = var.price_class
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
web_acl_id = var.web_acl_id
tags = merge(var.tags, local.tags)
default_cache_behavior {
allowed_methods = var.allowed_methods
cached_methods = var.cached_methods
compress = var.compress
default_ttl = var.default_ttl
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
# 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}"
forwarded_values {
headers = var.headers
query_string = var.query_string
query_string_cache_keys = var.query_string_cache_keys
cookies {
forward = var.forward
whitelisted_names = var.whitelisted_names
}
}
}
dynamic "logging_config" {
for_each = var.bucket_logging ? [local.bucket_logging] : []
content {
bucket = logging_config.value.bucket
include_cookies = lookup(logging_config.value, "include_cookies", null)
prefix = lookup(logging_config.value, "prefix", null)
}
}
dynamic "custom_error_response" {
for_each = var.custom_error_response
content {
error_caching_min_ttl = lookup(custom_error_response.value, "error_caching_min_ttl", null)
error_code = custom_error_response.value.error_code
response_code = lookup(custom_error_response.value, "response_code", null)
response_page_path = lookup(custom_error_response.value, "response_page_path", null)
}
}
origin {
domain_name = var.domain_name
origin_id = var.origin_id
origin_path = var.origin_path
dynamic "custom_header" {
for_each = var.custom_header
content {
name = custom_header.value.name
value = custom_header.value.value
}
}
}
restrictions {
geo_restriction {
locations = var.locations
restriction_type = var.restriction_type
}
}
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
}
}