Skip to content

Commit

Permalink
Add IPv6 source subnets and us-east to webhook-ips.json
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-aaron1011 committed Apr 16, 2024
1 parent 4fd68f3 commit 926c2fe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
12 changes: 10 additions & 2 deletions docs/receiving/source-ips.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@ In case your webhook receiving endpoint is behind a firewall or NAT, you may nee

This is the full list of IP addresses that webhooks may originate from grouped by the region of the sender. The list is also available as a JSON file: [webhooks-ips.json](pathname:///webhook-ips.json).

## US
## US-West

<pre>
<code>
{sourceIps["us"].join("\n")}
{sourceIps["us-west"].join("\n")}
</code>
</pre>

## US-East (Private)

<pre>
<code>
{sourceIps["us-east"].join("\n")}
</code>
</pre>

Expand Down
13 changes: 10 additions & 3 deletions static/webhook-ips.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
"us": [
"us-west": [
"44.228.126.217",
"50.112.21.217",
"52.24.126.164",
"54.148.139.208"
"54.148.139.208",
"2600:1f24:64:8000::/52",
],
"us-east": [
"54.164.207.221",
"54.90.7.123",
"2600:1f28:37:4000::/52"
],
"eu": [
"52.215.16.239",
"54.216.8.72",
"63.33.109.123"
"63.33.109.123",
"2a05:d028:17:8000::/52"
],
"in": [
"13.126.41.108",
Expand Down

0 comments on commit 926c2fe

Please sign in to comment.