Skip to content

Commit

Permalink
Merge pull request #35 from SeaGL/aj/2023-ephemeral
Browse files Browse the repository at this point in the history
Add 2023 ephemeral homeserver DNS entries
  • Loading branch information
prasket authored Oct 30, 2023
2 parents 3b9c345 + 3666870 commit 30f0721
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
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
]
}
2 changes: 1 addition & 1 deletion osem_rds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "aws_db_instance" "osem" {
allocated_storage = 30
max_allocated_storage = 100
engine = "mariadb"
engine_version = "10.6.10"
engine_version = "10.6.14"
instance_class = "db.t4g.micro"
name = "osem"
username = "osem"
Expand Down

0 comments on commit 30f0721

Please sign in to comment.