Skip to content

Commit

Permalink
Add 2023 ephemeral homeserver DNS entries
Browse files Browse the repository at this point in the history
  • Loading branch information
strugee committed Oct 27, 2023
1 parent e386ad8 commit 3666870
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,29 @@ 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"
ttl = "300"
records = [
local.matrix_2023_server_ip
]
}

0 comments on commit 3666870

Please sign in to comment.