Add Google Search Console integration to Plausible

This commit is contained in:
Jake Howard
2022-02-13 16:43:09 +00:00
parent a075b8f252
commit 722b964bc9
4 changed files with 38 additions and 16 deletions

View File

@ -36,7 +36,7 @@ resource "cloudflare_record" "theorangeonenet_mx2" {
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_txt" {
resource "cloudflare_record" "theorangeonenet_spf" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "@"
value = "v=spf1 include:spf.messagingengine.com ~all"
@ -188,3 +188,11 @@ resource "cloudflare_record" "theorangeonenet_status" {
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_google_site_verification" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "@"
value = "google-site-verification=IXY4iSBN_vOcM3cp_f-BgVvEI_shz1GzXuY_8dqY61o"
type = "TXT"
ttl = 1
}