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/integrations/data-ingestion/clickpipes/aws-privatelink.md
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,38 +56,45 @@ To set up PrivateLink with VPC resource:
56
56
2. Create a resource configuration
57
57
3. Create a resource share
58
58
59
-
#### 1. Create a Resource-Gateway {#create-resource-gateway}
59
+
#### 1. Create a resource gateway {#create-resourcegateway}
60
60
61
-
Resource-Gateway is the point that receives traffic for specified resources in your VPC.
61
+
Resource gateway is the point that receives traffic for specified resources in your VPC.
62
62
63
-
You can create a Resource-Gateway from the [AWS console](https://docs.aws.amazon.com/vpc/latest/privatelink/create-resource-gateway.html) or with the following command:
63
+
:::note
64
+
Your resource gateway attached subnets are recommended to have sufficient IP addresses available.
65
+
It's recommended to have at least `/26` subnet mask for each subnet.
66
+
67
+
For each VPC endpoint (each Reverse Private Endpoint), AWS requires a consecutive block of 16 IP addresses per subnet. (`/28` subnet mask)
68
+
:::
69
+
70
+
You can create a resource gateway from the [AWS console](https://docs.aws.amazon.com/vpc/latest/privatelink/create-resource gateway.html) or with the following command:
64
71
65
72
```bash
66
-
aws vpc-lattice create-resource-gateway \
73
+
aws vpc-lattice create-resourcegateway \
67
74
--vpc-identifier <VPC_ID> \
68
75
--subnet-ids <SUBNET_IDS> \
69
76
--security-group-ids <SG_IDs> \
70
77
--name <RESOURCE_GATEWAY_NAME>
71
78
```
72
79
73
-
The output will contain a Resource-Gateway id, which you will need for the next step.
80
+
The output will contain a resource gateway id, which you will need for the next step.
74
81
75
-
Before you can proceed, you'll need to wait for the Resource-Gateway to enter into an `Active` state. You can check the state by running the following command:
82
+
Before you can proceed, you'll need to wait for the resource gateway to enter into an `Active` state. You can check the state by running the following command:
#### 2. Create a VPC Resource-Configuration {#create-resource-configuration}
83
90
84
-
Resource-Configuration is associated with Resource-Gateway to make your resource accessible.
91
+
Resource-Configuration is associated with resource gateway to make your resource accessible.
85
92
86
93
You can create a Resource-Configuration from the [AWS console](https://docs.aws.amazon.com/vpc/latest/privatelink/create-resource-configuration.html) or with the following command:
0 commit comments