Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
63 lines (53 sloc)
1.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Name for the origin | |
locals { | |
s3_origin_id = "s3-web-${aws_s3_bucket.site-bucket.id}" | |
} | |
# CF distribution | |
resource "aws_cloudfront_distribution" "site" { | |
origin { | |
origin_id = local.s3_origin_id | |
domain_name = aws_s3_bucket.site-bucket.website_endpoint | |
# Custom origin with S3 website as source | |
# This ensures subdirectories redirect to their associated index.html | |
custom_origin_config { | |
http_port = "80" | |
https_port = "443" | |
origin_protocol_policy = "http-only" | |
origin_ssl_protocols = ["TLSv1.2"] | |
} | |
} | |
enabled = true | |
is_ipv6_enabled = true | |
price_class = "PriceClass_100" | |
aliases = [ | |
var.domain_name | |
] | |
default_root_object = "index.html" | |
default_cache_behavior { | |
allowed_methods = ["GET", "HEAD"] | |
cached_methods = ["GET", "HEAD"] | |
target_origin_id = local.s3_origin_id | |
viewer_protocol_policy = "redirect-to-https" | |
compress = true | |
forwarded_values { | |
query_string = false | |
cookies { | |
forward = "none" | |
} | |
} | |
} | |
restrictions { | |
geo_restriction { | |
restriction_type = "none" | |
} | |
} | |
viewer_certificate { | |
acm_certificate_arn = aws_acm_certificate.site.arn | |
ssl_support_method = "sni-only" | |
} | |
logging_config { | |
include_cookies = false | |
bucket = aws_s3_bucket.site-logs.bucket_domain_name | |
prefix = "${var.domain_name}/cf/" | |
} | |
} |