-
Notifications
You must be signed in to change notification settings - Fork 0
/
route53.tf
28 lines (23 loc) · 837 Bytes
/
route53.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
resource "aws_route53_zone" "main" {
name = var.domain_name
}
resource "aws_route53_record" "redirect-a" {
zone_id = aws_route53_zone.main.zone_id
name = var.domain_name
type = "A"
alias {
name = aws_cloudfront_distribution.redirect_s3_distribution.domain_name
zone_id = aws_cloudfront_distribution.redirect_s3_distribution.hosted_zone_id
evaluate_target_health = false
}
}
resource "aws_route53_record" "www-a" {
zone_id = aws_route53_zone.main.zone_id
name = "www.${var.domain_name}"
type = "A"
alias {
name = aws_cloudfront_distribution.web_s3_distribution.domain_name
zone_id = aws_cloudfront_distribution.web_s3_distribution.hosted_zone_id
evaluate_target_health = false
}
}