Skip to content

Commit

Permalink
Destroy 2023 DNS records (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
strugee authored Nov 15, 2023
1 parent 9ca8cd6 commit 84d0dd4
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -189,40 +189,3 @@ resource "aws_route53_record" "mailu-test-dmarc" {
"v=DMARC1; p=reject; rua=mailto:[email protected]; ruf=mailto:[email protected]; adkim=s; aspf=s"
]
}

# 2023 ephemeral Matrix homeserver

locals {
matrix_2023_server_ip = "140.211.167.238"
}

resource "aws_route53_record" "matrix-2023-ephemeral-a" {
zone_id = "Z0173878287JIU5M4KB8R"
name = "matrix.2023.seagl.org"
type = "A"
ttl = "300"
records = [
local.matrix_2023_server_ip
]
}

resource "aws_route53_record" "matrix-2023-ephemeral-delegation-a" {
zone_id = "Z0173878287JIU5M4KB8R"
name = "2023.seagl.org"
type = "A"
alias {
name = "d34bgs5yccfcw9.cloudfront.net"
zone_id = "Z2FDTNDATAQYW2"
evaluate_target_health = false
}
}

resource "aws_route53_record" "jitsi-2023" {
zone_id = "Z0173878287JIU5M4KB8R"
name = "meet.seagl.org"
type = "A"
ttl = "300"
records = [
"146.190.2.208"
]
}

0 comments on commit 84d0dd4

Please sign in to comment.