Fleshing out ahoskingit.com DNS

This commit is contained in:
Alexander Hosking 2017-01-31 17:22:57 -05:00
parent d90b2abb74
commit a80c7bdde8

View File

@ -45,6 +45,69 @@ resource "aws_route53_record" "lab_ahoskingit" {
records = ["${aws_route53_record.kfa_ahoskingit.name}"]
}
resource = "aws_route53_record" "inventory_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "inventory.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "plex_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "plex.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "ns1_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "ns1.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "docs_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "docs.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "cloud_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "cloud.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "support_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "support.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "git_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "git.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
resource = "aws_route53_record" "gitlab_ahoskingit" {
zone_id = "${aws_route53_zone.ahoskingit.zone_id}"
name = "gitlab.ahoskingit.com"
type = "CNAME"
ttl = "5"
records = ["${aws_route53_record.home_ahoskingit.name}"]
}
#Route53 DNS entry
#resource "aws_route53_record" "www_ahoskingit" {