You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/private-networking/overview.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ AWS PrivateLink is a managed service that creates a private, one-way connection
17
17
It works by pairing two resources:
18
18
19
19
- A **VPC Endpoint Service** in the account that owns the resource (yours). This is fronted by a Network Load Balancer (NLB) and exposes whatever ports you choose.
20
-
- A **VPC Endpoint** in the account that wants to consume the resource (Trigger.dev's). The endpoint is a set of Elastic Network Interfaces (ENIs) inside our VPC that your task pods can dial directly by IP or DNS name.
20
+
- A **VPC Endpoint** in the account that wants to consume the resource (Trigger.dev's). The endpoint is an Elastic Network Interface (ENI) inside our VPC with a private IP that your task pods can dial directly.
21
21
22
22
The connection is unidirectional: only the endpoint side can initiate connections. Your VPC cannot reach into ours.
23
23
@@ -42,16 +42,16 @@ When you add a private connection in the dashboard, the following happens:
42
42
You create an internal NLB in front of your resource and a VPC Endpoint Service that points to it. You add Trigger.dev's AWS account as an allowed principal so we're permitted to connect.
43
43
</Step>
44
44
<Steptitle="We provision a VPC Endpoint">
45
-
Once you submit the endpoint service name in the Trigger.dev dashboard, we provision a VPC Endpoint in our AWS account in the region you chose. The endpoint creates ENIs with private IPs that we wire up to reach your service.
45
+
Once you submit the endpoint service name in the Trigger.dev dashboard, we provision a VPC Endpoint in our AWS account in the region you chose. The endpoint creates an ENI with a private IP that we wire up to reach your service.
46
46
</Step>
47
47
<Steptitle="Your tasks can reach the endpoint">
48
-
Once the connection is **Active**, the dashboard shows the assigned IPs and a copyable DNS endpoint name. Pods running your tasks are network-authorized to connect to those addresses.
48
+
Once the connection is **Active**, the dashboard shows the assigned IP. Pods running your tasks are network-authorized to connect to it.
49
49
</Step>
50
50
</Steps>
51
51
52
52
### Connecting from your task code
53
53
54
-
When the connection becomes **Active**, the dashboard shows the assigned endpoint IP. Plug it into the connection-string env var your task already reads (for example, `DATABASE_URL` set in the **Environment Variables** page):
54
+
When the connection becomes **Active**, the dashboard shows the assigned endpoint IP. Plug it into the connection-string environment variable your task already reads (for example, `DATABASE_URL` set on the **Environment Variables** page):
0 commit comments