From 058109aa706c4878a03b53708e7b8b07748f8840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sat, 4 Nov 2023 18:29:10 +0100 Subject: [PATCH] feat: add audiobook domain to google search console --- dns.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/dns.tf b/dns.tf index ed3f5df..51a4e0e 100644 --- a/dns.tf +++ b/dns.tf @@ -55,6 +55,14 @@ resource "hetznerdns_record" "grafana" { 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 resource "hetznerdns_record" "mail_verification" { @@ -162,3 +170,11 @@ resource "hetznerdns_record" "www_pfeil" { type = "CNAME" 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 +}