Skip to content

Instantly share code, notes, and snippets.

@jschr
Last active April 12, 2017 02:24
Show Gist options
  • Save jschr/726b8cbbb64003785fd8e5cb61aa6e39 to your computer and use it in GitHub Desktop.
Save jschr/726b8cbbb64003785fd8e5cb61aa6e39 to your computer and use it in GitHub Desktop.
terraform cloudfront
# the cloudfront distribution
resource "aws_cloudfront_distribution" "s3_distribution" {
origin {
domain_name = "${aws_s3_bucket.website.bucket_domain_name}"
origin_id = "websiteS3Origin"
}
aliases = ["${var.domain}", "www.${var.domain}"]
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment