feat: add audiobook domain to google search console

This commit is contained in:
Julian Tölle 2023-11-04 18:29:10 +01:00
parent 33733de02c
commit 058109aa70

16
dns.tf
View file

@ -55,6 +55,14 @@ resource "hetznerdns_record" "grafana" {
ttl = 60 ttl = 60
} }
resource "hetznerdns_record" "auth" {
zone_id = hetznerdns_zone.apricote_de.id
name = "auth"
value = "auth.c3-ing.apricote.de."
type = "CNAME"
ttl = 60
}
# apricote.de proton.me # apricote.de proton.me
resource "hetznerdns_record" "mail_verification" { resource "hetznerdns_record" "mail_verification" {
@ -162,3 +170,11 @@ resource "hetznerdns_record" "www_pfeil" {
type = "CNAME" type = "CNAME"
ttl = 60 ttl = 60
} }
resource "hetznerdns_record" "pfeil_google_site_verification_txt" {
zone_id = hetznerdns_zone.pfeil.id
name = "@"
value = "google-site-verification=ax0uv3yF_9rzda4CsLVnIPkeyNjsRx7VRW9vvkrBDts"
type = "TXT"
ttl = 60
}