dns: add matrix srv record
All checks were successful
build / test (push) Successful in 8s

This commit is contained in:
Jörg Thalheim 2023-07-13 18:41:09 +02:00
parent 9204ad948d
commit c57e6a0efc
2 changed files with 12 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -97,6 +97,13 @@ resource "hetznerdns_record" "adsp" {
value = "\"dkim=all;\""
}
resource "hetznerdns_record" "matrix" {
zone_id = hetznerdns_zone.server.id
name = "_matrix._tcp"
type = "SRV"
value = "0 5 443 matrix"
}
resource "netlify_dns_record" "adsp" {
zone_id = netlify_dns_zone.server.id
hostname = "_adsp._domainkey.${var.domain}"