Skip to content

Commit

Permalink
re-googlify
Browse files Browse the repository at this point in the history
  • Loading branch information
beggers committed Jul 19, 2024
1 parent f81f0de commit fdf3ae4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 51 deletions.
1 change: 0 additions & 1 deletion terraform/deleted_zones.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ module "posts" {
source = "./removed_zone"
}


module "joy_of_shipping_posts" {
source = "./removed_zone"
}
Expand Down
20 changes: 20 additions & 0 deletions terraform/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,23 @@ resource "aws_route53_record" "soa" {
"ns-578.awsdns-08.net. awsdns-hostmaster.amazon.com. 1 7200 900 1209600 300"
]
}

resource "aws_route53_record" "google_verification" {
zone_id = aws_route53_zone.main.zone_id
name = var.domainName
type = "TXT"
ttl = "300"
records = [
"google-site-verification=K4uyf7WHOkwc2uv2sg6gYX1ZXoziSN190QAwNssv3g0"
]
}

resource "aws_route53_record" "gmail_mx" {
zone_id = aws_route53_zone.main.zone_id
name = var.domainName
type = "MX"
ttl = "300"
records = [
"1 SMTP.GOOGLE.COM"
]
}
50 changes: 0 additions & 50 deletions terraform/dns_fastmail.tf

This file was deleted.

0 comments on commit fdf3ae4

Please sign in to comment.