Skip to content

Commit dff90cb

Browse files
authored
Merge pull request #4351 from ClickHouse/kk/clarify-cluster-publicly-accessible
fix(docs): Clarify restrictions on resource configuration for publicly accessible clusters for ClickPipes
2 parents 404257a + 85a4173 commit dff90cb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/integrations/data-ingestion/clickpipes/aws-privatelink.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@ aws vpc-lattice create-resource-configuration \
103103
--resource-configuration-definition 'arnResource={arn=arn:aws:rds:us-east-1:123456789012:cluster:my-rds-cluster}'
104104
```
105105

106+
:::note
107+
You can't create a resource configuration for a publicly accessible cluster.
108+
If your cluster is publicly accessible, you must modify the cluster
109+
to make it private before creating the resource configuration
110+
or use [IP allow list](/integrations/clickpipes#list-of-static-ips) instead.
111+
For more information, see the [AWS documentation](https://docs.aws.amazon.com/vpc/latest/privatelink/resource-configuration.html#resource-definition).
112+
:::
113+
106114
The output will contain a Resource-Configuration ARN, which you will need for the next step. It will also contain a Resource-Configuration ID, which you will need to set up a ClickPipe connection with VPC resource.
107115

108116
#### 3. Create a Resource-Share {#create-resource-share}
@@ -113,7 +121,7 @@ You can put the Resource-Configuration into the Resource-Share through [AWS cons
113121

114122
```bash
115123
aws ram create-resource-share \
116-
--principals arn:aws:iam::072088201116:root \
124+
--principals 072088201116 \
117125
--resource-arns <RESOURCE_CONFIGURATION_ARN> \
118126
--name <RESOURCE_SHARE_NAME>
119127
```

0 commit comments

Comments
 (0)