Static IP addressed for Supabase Edge functions. Possible? #29078
Unanswered
MariusWilsch
asked this question in
Questions
Replies: 3 comments 2 replies
|
Edge Functions use Deno Deploy under the hood. As far as I know, no they're not static. Even if they were static, these IPs are shared and therefore allowlisting them inherently means you're API is insecure as anyone using Edge Functions could access it. You should sign your requests instead using something like HMAC or similar. |
2 replies
|
You can utilize other services depending on specific requirements to customize features (for example, things like rate limiting). |
0 replies
|
for that use cause you can you use a static outbound ip proxy, e.g. https://outboundgateway.com |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello my client has recently implemented a VPN and I can only access his API resources if I have a static IP that he can whitelist. I was using edge function so far but right now I'm clueless how retrieve the server's IP and if it's static or not.
As soon as I know the IP of the Edge Functions server, then I can whitelist that IP address and my Edge Function is usable again. I know you can print the client's IP address but that's not helping. Please let me know if that is possible at all or if I need to be looking into other hosting methods.
All reactions