DNS for automatedbytes domains
This commit is contained in:
parent
83ab4fc12a
commit
23177a2360
61
ahoskingit/terraform/dns_automatedbytes.tf
Normal file
61
ahoskingit/terraform/dns_automatedbytes.tf
Normal file
@ -0,0 +1,61 @@
|
||||
#Terraform and its management of DNS in route53
|
||||
### ITAutomata.com
|
||||
#Setup the domain in route53
|
||||
resource "aws_route53_zone" "automatedbytes" {
|
||||
name = "automatedbytes.com"
|
||||
}
|
||||
|
||||
#Route53 DNS entry
|
||||
resource "aws_route53_record" "automatedbytes" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "automatedbytes.com"
|
||||
type = "A"
|
||||
ttl = "5"
|
||||
records = ["${var.home_ip}"]
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "www_automatedbytes" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "www.automatedbytes.com"
|
||||
type = "CNAME"
|
||||
ttl = "5"
|
||||
records = ["${aws_route53_record.automatedbytes_ca.name}"]
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "wildcard_automatedbytes" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "*.automatedbytes.com"
|
||||
type = "CNAME"
|
||||
ttl = "5"
|
||||
records = ["${aws_route53_record.automatedbytes_ca.name}"]
|
||||
}
|
||||
|
||||
### ITAutomata.ca
|
||||
#Setup the domain in route53
|
||||
resource "aws_route53_zone" "automatedbytes_ca" {
|
||||
name = "automatedbytes.ca"
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "automatedbytes_ca" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "www.automatedbytes.ca"
|
||||
type = "A"
|
||||
ttl = "5"
|
||||
records = ["${var.home_ip}"]
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "www_automatedbytes_ca" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "www.automatedbytes.ca"
|
||||
type = "CNAME"
|
||||
ttl = "5"
|
||||
records = ["${aws_route53_record.automatedbytes_ca.name}"]
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "wildcard_automatedbytes_ca" {
|
||||
zone_id = "${aws_route53_zone.automatedbytes.zone_id}"
|
||||
name = "*.automatedbytes.ca"
|
||||
type = "CNAME"
|
||||
ttl = "5"
|
||||
records = ["${aws_route53_record.automatedbytes_ca.name}"]
|
||||
}
|
Loading…
Reference in New Issue
Block a user