Merge pull request 'dns: add matrix srv record' (#8) from dns into main
All checks were successful
build / test (push) Successful in 7s

Reviewed-on: #8
This commit is contained in:
Mic92 2023-07-13 16:41:43 +00:00
commit f8531c4ec2
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}"