2017-06-09 23:37:49 +00:00
|
|
|
##Terraform and its management of DNS in route53
|
|
|
|
#### automatedbytes.com
|
|
|
|
##Setup the domain in route53
|
2019-06-14 03:15:54 +00:00
|
|
|
resource "cloudflare_zone" "automatedbytes_com" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone = "automatedbytes.com"
|
2019-06-14 03:15:54 +00:00
|
|
|
}
|
2017-06-29 05:21:12 +00:00
|
|
|
resource "aws_route53_zone" "automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
name = "automatedbytes.com"
|
2017-06-29 05:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Route53 DNS entry
|
|
|
|
resource "aws_route53_record" "automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
name = "automatedbytes.com"
|
|
|
|
type = "A"
|
|
|
|
ttl = "5"
|
|
|
|
records = [var.home_ip]
|
2017-06-29 05:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_route53_record" "www_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
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" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
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" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
name = "support.automatedbytes.com"
|
|
|
|
type = "A"
|
|
|
|
ttl = "5"
|
|
|
|
records = [var.home_ip]
|
2017-06-29 05:21:12 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 03:38:39 +00:00
|
|
|
resource "aws_route53_record" "kfa_support_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
name = "kfa.support.automatedbytes.com"
|
|
|
|
type = "CNAME"
|
|
|
|
ttl = "5"
|
|
|
|
records = ["support.automatedbytes.com"]
|
2017-09-18 03:38:39 +00:00
|
|
|
}
|
|
|
|
|
2017-06-29 05:21:12 +00:00
|
|
|
## Email MX records
|
|
|
|
resource "aws_route53_record" "mx_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = aws_route53_zone.automatedbytes.zone_id
|
|
|
|
name = aws_route53_zone.automatedbytes.name
|
|
|
|
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"]
|
2017-06-29 05:21:12 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 02:54:54 +00:00
|
|
|
resource "cloudflare_record" "assets_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = cloudflare_zone.automatedbytes_com.id
|
|
|
|
name = "assets"
|
|
|
|
type = "A"
|
|
|
|
proxied = false
|
|
|
|
value = var.do_assets
|
2021-05-19 02:54:54 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 03:33:07 +00:00
|
|
|
resource "cloudflare_record" "assets_api_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = cloudflare_zone.automatedbytes_com.id
|
|
|
|
name = "assets-api"
|
|
|
|
type = "A"
|
|
|
|
proxied = false
|
|
|
|
value = var.do_assets
|
2021-05-19 03:33:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "cloudflare_record" "assets_mesh_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = cloudflare_zone.automatedbytes_com.id
|
|
|
|
name = "assets-mesh"
|
|
|
|
type = "A"
|
|
|
|
proxied = false
|
|
|
|
value = var.do_assets
|
2021-05-19 03:33:07 +00:00
|
|
|
}
|
|
|
|
|
2019-10-16 21:24:47 +00:00
|
|
|
resource "cloudflare_record" "support_automatedbytes" {
|
2021-10-13 15:00:41 +00:00
|
|
|
zone_id = cloudflare_zone.automatedbytes_com.id
|
|
|
|
name = "support"
|
|
|
|
type = "A"
|
|
|
|
proxied = true
|
|
|
|
value = var.home_ip
|
2020-11-25 05:39:55 +00:00
|
|
|
}
|
2021-12-22 19:21:32 +00:00
|
|
|
|
|
|
|
resource "cloudflare_record" "itmanagement_automatedbytes" {
|
|
|
|
zone_id = cloudflare_zone.automatedbytes_com.id
|
|
|
|
name = "itmanagement"
|
|
|
|
type = "CNAME"
|
|
|
|
ttl = "1"
|
|
|
|
proxied = true
|
|
|
|
value = join(".", [cloudflare_record.ahosking_home.name, cloudflare_zone.automatedbytes_com.zone])
|
|
|
|
}
|
|
|
|
|