SYSTEM Cited by 2 sources
Cloudflare Mesh¶
Cloudflare Mesh (documentation) is Cloudflare's private network overlay for connecting Workers (and other Cloudflare Developer Platform compute) to internal services that should never be exposed to the open Internet — typically internal APIs, databases, or admin services running on a cloud provider VPC (AWS, Azure, GCP) or on-premises.
The connection is post-quantum-encrypted and requires neither a VPN nor a bastion host on the operator's side. Source: sources/2026-05-19-cloudflare-announcing-claude-managed-agents-on-cloudflare.
What it gives you¶
From the post directly:
"sometimes internal services shouldn't ever be exposed to the open Internet. We recently launched Cloudflare Mesh and Cloudflare Workers VPC to better connect to these private services, whether they're running on a cloud provider like AWS or on-premises. This allows you to connect to internal services using post-quantum encrypted networking without a VPN or bastion host."
The point is the trade collapses: the alternative architectures — push the Worker into the customer's VPN; build a public bastion; expose the service over a tunnel maintained by ops — all add either attack surface, ops burden, or operational latency. Mesh removes all three by making the Cloudflare edge the trust boundary.
Composition with the egress proxy pattern¶
Cloudflare Mesh composes naturally with outbound Worker proxies — the agent's untrusted sandbox sends every outbound byte through a credentialed proxy (a Worker), which decides per request whether to inject a credential, route through Mesh / Workers VPC, or block. From the agent's perspective the private service looks like any other endpoint. From the security team's perspective the agent never gets near the internal network — only the credentialed proxy can speak Mesh.
This is canonicalised at concepts/outbound-proxy-credential-injection.
Mesh vs Workers VPC¶
The post does not lay out a clean axis between Cloudflare Mesh and Cloudflare Workers VPC; both are named together in the same paragraph. Operator framing from the post: "Cloudflare Mesh and Cloudflare Workers VPC to better connect to these private services, whether they're running on a cloud provider like AWS or on-premises." Future ingest opportunity: a dedicated launch / docs deep-dive that pins each product's trade-off envelope.
Seen in¶
-
sources/2026-05-19-cloudflare-announcing-claude-managed-agents-on-cloudflare — first canonical wiki appearance. Named as one of the two primitives (with Workers VPC) that lets the Cloudflare-based Claude Managed Agents sandbox reach private services without requiring the agent itself to be inside the operator's VPN.
-
sources/2026-06-10-cloudflare-route-public-traffic-to-private-applications — Cloudflare Mesh is named as one of the connectivity options for the new Application Services for Private Origins feature. The private networking layer underlying Mesh is now shared with DNS-proxied HTTP origins and Spectrum L4 proxy — a unified connectivity layer across all products.
Related¶
- Sister product: systems/cloudflare-workers-vpc
- System: systems/cloudflare-private-origins
- Pattern compositions: patterns/outbound-worker-proxy-for-agent-egress
- Concept: concepts/outbound-proxy-credential-injection, concepts/unified-connectivity-layer
- Higher-level umbrella: systems/cloudflare-one-sase / systems/cloudflare-zero-trust-access
- Crypto baseline: concepts/post-quantum-cryptography
- Companies: companies/cloudflare