From 813f75cf99c053cea6b33b1b469a35c99a214ec0 Mon Sep 17 00:00:00 2001 From: Den Delimarsky Date: Wed, 25 Mar 2026 22:23:37 +0000 Subject: [PATCH] Remove guildbridge CNAME record MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The guildbridge subdomain is managed by a Cloudflare Worker Custom Domain binding, which creates a read-only DNS record that cannot be managed via the DNS API. Attempting to create it via Pulumi fails with Cloudflare error 9059 ("Invalid CNAME target. Only DNS Only zones can point to partial suffixes"), blocking all deploys since #13. The record remains live and functional — it's managed by the Worker binding, not this stack. :house: Remote-Dev: homespace --- src/config/records.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/config/records.ts b/src/config/records.ts index 3b13bc2..25f6b46 100644 --- a/src/config/records.ts +++ b/src/config/records.ts @@ -34,11 +34,8 @@ export const DNS_RECORDS: Record = { // Other subdomains { subdomain: 'example-server', type: 'CNAME', content: 'ghs.googlehosted.com' }, { subdomain: 'meet', type: 'CNAME', content: 'mcp.meetable.org' }, - { - subdomain: 'guildbridge', - type: 'CNAME', - content: 'guildbridge.modelcontextprotocol.io.cdn.cloudflare.net', - }, + // guildbridge.modelcontextprotocol.io is managed by a Worker Custom Domain binding + // (read-only record, not manageable via DnsRecord) // MX record for Google Workspace { subdomain: '@', type: 'MX', content: 'smtp.google.com', priority: 1 },