add search engine verification DNS records
This commit is contained in:
parent
488024a772
commit
bb57d3573d
1 changed files with 16 additions and 0 deletions
|
@ -5,6 +5,22 @@ resource "powerdns_zone" "kun_is" {
|
||||||
soa_edit_api = "DEFAULT"
|
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" {
|
resource "powerdns_record" "ns_kun_is_a" {
|
||||||
zone = powerdns_zone.kun_is.name
|
zone = powerdns_zone.kun_is.name
|
||||||
name = "ns.kun.is."
|
name = "ns.kun.is."
|
||||||
|
|
Reference in a new issue