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
This commit is contained in:
Rasmus Wejlgaard 2026-03-28 21:08:31 +00:00 committed by GitHub
parent 80ddb31f8a
commit 69f895c5cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -392,21 +392,7 @@ resource "cloudflare_dns_record" "root-mx-20" {
# PTR Records # 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 # TXT Records