remove builtwithnix.org

This commit is contained in:
zimbatm 2023-01-24 22:33:14 +01:00
parent 040f73ad05
commit 035c316bf3
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7

View file

@ -1,27 +0,0 @@
locals {
builtwithnix_zone_id = "90161b6fed8644e4f5ea1eb8535260b1"
}
resource "cloudflare_record" "builtwithnix-A" {
zone_id = local.builtwithnix_zone_id
name = "@"
value = "nix-community.github.io"
type = "CNAME"
proxied = false
}
resource "cloudflare_record" "builtwithnix-www-A" {
zone_id = local.builtwithnix_zone_id
name = "www"
value = "nix-community.github.io"
type = "CNAME"
proxied = false
}
# Any email coming from that domain are SPAM
resource "cloudflare_record" "builtwithnix-TXT" {
zone_id = local.builtwithnix_zone_id
name = "@"
value = "v=spf1 -all"
type = "TXT"
}