Skip to content

Commit a68d34b

Browse files
authored
nit (#26311)
* nit * nit
1 parent bb757ac commit a68d34b

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

src/content/changelog/workers-vpc/2025-09-25-workers-vpc.mdx

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
---
2-
title: Workers VPC Services (Beta)
2+
title: Announcing Workers VPC Services (Beta)
33
description: Access private resources in your VPC from Cloudflare Workers
44
date: 2025-11-05
55
---
66

7-
We're excited to announce the beta release of **Workers VPC Services**, enabling Cloudflare Workers to securely access resources in your private networks.
7+
**Workers VPC Services** is now available, enabling your Workers to securely access resources in your private networks, without having to expose them on the public Internet.
88

99
## What's new
1010

11-
- **VPC Services**: Create secure connections to internal APIs, databases, and services through Cloudflare Tunnel using familiar Worker binding syntax
12-
- **Multi-cloud Support**: Connect to resources across AWS, Azure, GCP, and on-premise infrastructure
11+
- **VPC Services**: Create secure connections to internal APIs, databases, and services using familiar Worker binding syntax
12+
- **Multi-cloud Support**: Connect to resources in private networks in any external cloud (AWS, Azure, GCP, etc.) or on-premise using Cloudflare Tunnels
13+
14+
```js
15+
export default {
16+
async fetch(request, env, ctx) {
17+
// Perform application logic in Workers here
18+
19+
// Sample call to an internal API running on ECS in AWS using the binding
20+
const response = await env.AWS_VPC_ECS_API.fetch("https://internal-host.example.com");
21+
22+
// Additional application logic in Workers
23+
return new Response();
24+
},
25+
};
26+
```
1327

1428
## Getting started
1529

0 commit comments

Comments
 (0)