orchestration.clouds/ahoskingit/terraform/dns_automatedbytes.tf

71 lines
2.0 KiB
Terraform
Raw Normal View History

2017-06-09 23:37:49 +00:00
##Terraform and its management of DNS in route53
#### automatedbytes.com
##Setup the domain in route53
resource "cloudflare_zone" "automatedbytes_com" {
zone = "automatedbytes.com"
}
2017-06-29 05:21:12 +00:00
resource "aws_route53_zone" "automatedbytes" {
name = "automatedbytes.com"
}
#Route53 DNS entry
resource "aws_route53_record" "automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
2017-06-29 05:21:12 +00:00
name = "automatedbytes.com"
type = "A"
ttl = "5"
records = [var.vultr_ip]
2017-06-29 05:21:12 +00:00
}
resource "aws_route53_record" "www_automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
2017-06-29 05:21:12 +00:00
name = "www.automatedbytes.com"
type = "CNAME"
ttl = "5"
records = [aws_route53_record.automatedbytes.name]
2017-06-29 05:21:12 +00:00
}
resource "aws_route53_record" "wildcard_automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
2017-06-29 05:21:12 +00:00
name = "*.automatedbytes.com"
type = "CNAME"
ttl = "5"
records = [aws_route53_record.automatedbytes.name]
2017-06-29 05:21:12 +00:00
}
resource "aws_route53_record" "support_automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
2017-06-29 05:21:12 +00:00
name = "support.automatedbytes.com"
type = "A"
2017-06-29 05:21:12 +00:00
ttl = "5"
records = [var.home_ip]
2017-06-29 05:21:12 +00:00
}
resource "aws_route53_record" "kfa_support_automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
name = "kfa.support.automatedbytes.com"
type = "CNAME"
ttl = "5"
records = ["support.automatedbytes.com"]
}
2017-06-29 05:21:12 +00:00
## Email MX records
resource "aws_route53_record" "mx_automatedbytes" {
zone_id = aws_route53_zone.automatedbytes.zone_id
name = aws_route53_zone.automatedbytes.name
2017-06-29 05:21:12 +00:00
type = "MX"
ttl = "60"
records = ["1 ASPMX.L.GOOGLE.COM",
"5 ALT1.ASPMX.L.GOOGLE.COM",
"5 ALT2.ASPMX.L.GOOGLE.COM",
"10 ALT3.ASPMX.L.GOOGLE.COM",
"10 ALT4.ASPMX.L.GOOGLE.COM"]
}
resource "cloudflare_record" "support_automatedbytes" {
zone_id = cloudflare_zone.automatedbytes_com.id
name = "support"
type = "A"
proxied = true
value = var.home_ip
}