Skip to content

Commit 8cf3b1f

Browse files
committed
fix binding references to vpc_services
1 parent 669dedb commit 8cf3b1f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/content/docs/workers-vpc/configuration/vpc-services.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Once you have created a VPC Service, you can bind it to your Worker:
9090
name = "my-worker"
9191
main = "src/index.js"
9292

93-
[[services]]
93+
[[vpc_services]]
9494
binding = "PRIVATE_API"
9595
service_id = "5634563546"
9696
remote = true
@@ -102,17 +102,17 @@ You can have multiple service bindings:
102102

103103
<WranglerConfig>
104104
```toml
105-
[[services]]
105+
[[vpc_services]]
106106
binding = "PRIVATE_API"
107107
service_id = "5634563546"
108108
remote = true
109109

110-
[[services]]
110+
[[vpc_services]]
111111
binding = "PRIVATE_DATABASE"
112112
service_id = "7856789012"
113113
remote = true
114114

115-
[[services]]
115+
[[vpc_services]]
116116
binding = "INTERNAL_CACHE"
117117
service_id = "3412345678"
118118
remote = true

src/content/docs/workers-vpc/examples/private-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ name = "private-api-gateway"
3737
main = "src/index.js"
3838
compatibility_date = "2024-01-01"
3939

40-
[[services]]
40+
[[vpc_services]]
4141
binding = "INTERNAL_API"
4242
service_id = "<YOUR_SERVICE_ID>"
4343

src/content/docs/workers-vpc/get-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ name = "workers-vpc-app"
158158
main = "src/index.ts"
159159
compatibility_date = "2024-01-01"
160160

161-
[[services]]
161+
[[vpc_services]]
162162
binding = "PRIVATE_API"
163163
service_id = "<YOUR_SERVICE_ID>"
164164

0 commit comments

Comments
 (0)