Skip to content

Instantly share code, notes, and snippets.

@hervekhg
Last active April 29, 2019 15:27
Show Gist options
  • Save hervekhg/e351607efdd1a41f99c3d4bb8246b4dd to your computer and use it in GitHub Desktop.
Save hervekhg/e351607efdd1a41f99c3d4bb8246b4dd to your computer and use it in GitHub Desktop.
# --------------------------------------------------------------
# ROUTE53 ASSOCIATE TO CLOUDFRONT DISTRIBUTION
# ---------------------------------------------------------------
resource "aws_route53_record" "front" {
provider = "aws.mgmt"
zone_id = "thehktech.com"
name = "tuto"
type = "A"
alias {
evaluate_target_health = true
name = "${aws_cloudfront_distribution.site_distribution.domain_name}"
zone_id = "${aws_cloudfront_distribution.site_distribution.hosted_zone_id}"
}
depends_on = ["aws_cloudfront_distribution.site_distribution"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment