Update DNS records
All checks were successful
/ terraform (push) Successful in 38s
/ ansible (push) Successful in 1m36s

This commit is contained in:
Jake Howard 2024-11-25 20:02:36 +00:00
parent 43ad69e118
commit 3bf44d1d5b
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 30 additions and 0 deletions

View file

@ -323,6 +323,16 @@ resource "gandi_livedns_record" "jakehowardtech_uptime" {
] ]
} }
resource "gandi_livedns_record" "jakehowardtech_baby-buddy" {
zone = gandi_livedns_domain.jakehowardtech.id
name = "baby-buddy"
type = "CNAME"
ttl = 3600
values = [
"${gandi_livedns_record.sys_domain_pve_private.href}."
]
}
resource "gandi_livedns_record" "jakehowardtech_caa" { resource "gandi_livedns_record" "jakehowardtech_caa" {
zone = gandi_livedns_domain.jakehowardtech.id zone = gandi_livedns_domain.jakehowardtech.id
name = "@" name = "@"

View file

@ -250,6 +250,26 @@ resource "gandi_livedns_record" "theorangeonenet_comentario" {
] ]
} }
resource "gandi_livedns_record" "theorangeonenet_bsky" {
zone = gandi_livedns_domain.theorangeonenet.id
name = "bsky"
type = "CNAME"
ttl = 3600
values = [
"${gandi_livedns_record.sys_domain_pve.href}."
]
}
resource "gandi_livedns_record" "theorangeonenet_atproto" {
zone = gandi_livedns_domain.theorangeonenet.id
name = "_atproto"
type = "TXT"
ttl = 3600
values = [
"did=did:plc:pgyg4ih7zsqkwdon34jqkbuz"
]
}
resource "gandi_livedns_record" "theorangeonenet_caa" { resource "gandi_livedns_record" "theorangeonenet_caa" {
zone = gandi_livedns_domain.theorangeonenet.id zone = gandi_livedns_domain.theorangeonenet.id
name = "@" name = "@"