add search engine verification DNS records

This commit is contained in:
Pim Kunis 2023-08-29 18:21:09 +02:00
parent 488024a772
commit bb57d3573d

View file

@ -5,6 +5,22 @@ resource "powerdns_zone" "kun_is" {
soa_edit_api = "DEFAULT"
}
resource "powerdns_record" "kun_is_txt_google_verification" {
zone = powerdns_zone.kun_is.name
name = "kun.is."
type = "TXT"
records = ["\"google-site-verification=sznWJNdSZfiAESJhnDQEJ6hf06W9vndvhMi6wP_HH04\""]
ttl = 60
}
resource "powerdns_record" "bing_kun_is_cname" {
zone = powerdns_zone.kun_is.name
name = "fcfe5d31d5b7ae1af0b352a6b4c75d3f.kun.is."
type = "CNAME"
records = ["verify.bing.com."]
ttl = 60
}
resource "powerdns_record" "ns_kun_is_a" {
zone = powerdns_zone.kun_is.name
name = "ns.kun.is."