From 69f895c5cdf589cdc4fa005f088b49df38cfac2d Mon Sep 17 00:00:00 2001 From: "Rasmus \"Pez\" Wejlgaard" Date: Sat, 28 Mar 2026 21:08:31 +0000 Subject: [PATCH] Remove bogus PTR records from Cloudflare forward zone (#6) PTR record for 83.94.248.182 (copenhagen-a) incorrectly claimed to be mail.pez.sh. PTR records in a forward DNS zone don't control actual reverse DNS (that's managed by the ISP), and this record was misleading. Also removed the mail-ptr record which had a similarly misplaced in-addr.arpa reference in the forward zone. Fixes PESO-76 --- terraform/cloudflare_dns.tf | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/terraform/cloudflare_dns.tf b/terraform/cloudflare_dns.tf index 8093d8a..b43a4a4 100644 --- a/terraform/cloudflare_dns.tf +++ b/terraform/cloudflare_dns.tf @@ -392,21 +392,7 @@ resource "cloudflare_dns_record" "root-mx-20" { # PTR Records # ============================================================================= -resource "cloudflare_dns_record" "ptr-83-94-248-182" { - zone_id = cloudflare_zone.pez-sh.id - name = "83.94.248.182" - type = "PTR" - content = "mail.pez.sh" - ttl = 1 -} -resource "cloudflare_dns_record" "mail-ptr" { - zone_id = cloudflare_zone.pez-sh.id - name = "mail" - type = "PTR" - content = "154.134.235.167.in-addr.arpa" - ttl = 1 -} # ============================================================================= # TXT Records