Skip to content

Commit

Permalink
add the Google site verification TXT record
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Dec 29, 2020
1 parent b223020 commit 7457bfe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terraform/main.tf
Expand Up @@ -155,3 +155,13 @@ resource "cloudflare_record" "git_bytes_zone_caa" {
value = "letsencrypt.org"
}
}

## Google Verification

resource "cloudflare_record" "bytes_zone_verification" {
zone_id = data.cloudflare_zones.bytes_zone.zones[0].id
type = "TXT"
name = "@"
value = "google-site-verification=56ARNdYATpXCvRV8MdmtBd_6LI5iLpzs2MfUuDs3FYo"
ttl = 1 # automatic
}

0 comments on commit 7457bfe

Please sign in to comment.