terraform: remove withnix.org. Not used at the moment.

This commit is contained in:
zimbatm 2020-11-15 17:28:32 +01:00
parent 9066c0bb72
commit c8ec6ce1eb
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7

View file

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