Whitelist IP while still allowing access from other ips
We are running into issues where our VPC ip is intermittently getting blocked by supabase.
Since we also deploy on vercel, we can't lock down the ip to just a singular value, so network restrictions seems too draconian.
is there a way we can configure supabase to bypass its typical ip access checks for our vpc, while still allowing access from other ips?
6 Replies
I don’t believe there are any ip blocks except for the direct DB port ban list. It doesn’t impact the REST API.
I can resolve the block using this part of the supabase UI

CLI Reference | Supabase Docs
CLI reference for the Supabase CLI
https://supabase.com/docs/guides/platform/network-restrictions#limitations
This IP blocking is only for the DB ports. It is usually active for an ip if the ip made too many direct DP port login attempts with bad password. The IP has to be doing something to get put on the list and then it goes away in time (or you can remove). If it shows up again then it is violating some Direct DB access policy.
Network Restrictions | Supabase Docs
Apply network restrictions for your project's database.
ok awesome thanks