docs(clickpipes): correct ap-southeast-3 static NAT IPs - #6610
Closed
whites11 wants to merge 1 commit into
Closed
Conversation
The ap-southeast-3 row listed the three public proxy load-balancer EIPs
(tagged ...public-{a,b,c}-proxy-ip), which are ingress addresses, and
omitted the three alterNAT instance EIPs that ClickPipes actually egresses
from. Customers allowlisting this row were allowlisting three addresses
ClickPipes never connects out from, while missing the real ones.
Replaces 16.78.153.162 / 16.79.6.125 / 108.137.52.155 with
15.232.6.147 / 15.232.46.145 / 108.137.199.68 (ap-southeast-3-alternat-0/1/2).
The three NAT gateway EIPs already listed are unchanged.
Verified against the live EIP allocations in the ClickPipes production
account and against the static-ips.json Terraform plan (CLP-1115).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
4 Skipped Deployments
|
|
Thanks for contributing to the ClickHouse documentation! We’ve moved documentation development to the main ClickHouse/ClickHouse repository. For future documentation changes, please open your pull request there, with changes under the docs/ directory. We’ll continue reviewing this pull request here during the transition, and it will be transferred as part of the migration. You don’t need to reopen it. See the documentation README for more information. |
kitop
approved these changes
Aug 3, 2026
Member
|
Closing in favour of ClickHouse/ClickHouse#113109 |
govtech42
pushed a commit
to mirror81/ClickHouse
that referenced
this pull request
Aug 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
ap-southeast-3(Jakarta) row in the ClickPipes static NAT IPs table lists threeaddresses ClickPipes never egresses from, and omits three that it does.
16.78.195.195,16.79.88.54,43.218.184.235…-public-{a,b,c}-nat-ip) — unchanged by this PR16.78.153.162,16.79.6.125,108.137.52.155…-public-{a,b,c}-proxy-ip) — ingress addresses, never a source of outbound ClickPipes traffic15.232.6.147,15.232.46.145,108.137.199.68ap-southeast-3-alternat-0/1/2) — where ClickPipes egress traffic in this region actually originatesSo a customer in
ap-southeast-3who allowlisted exactly what the docs said would havethree useless entries in their firewall and would be missing the alterNAT egress path.
Only the Jakarta row changes; no other region is touched.
How this was verified
aws ec2 describe-addressesin the ClickPipes production account,ap-southeast-3:the Name tags cleanly separate
…-nat-ip(NAT gateway),ap-southeast-3-alternat-*(alterNAT instances) and
…-proxy-ip(proxy LB).data-plane-infrastructure#23729,
which starts publishing these same IPs as
clickpipes_egress_ipsinstatic-ips.json. That plan agrees byte-for-byte with this table for 28 of 30documented regions —
ap-southeast-3was one of the two that did not, and this PRcloses it.
Related: CLP-1115, #6596 (documents the new
clickpipes_egress_ipsfield),#6605 (adds the missing
ap-east-2row).🤖 Generated with Claude Code