Skip to content

How do I identify my Vercel deployment IP address?

When using third-party services such as databases, you may encounter the option to restrict incoming traffic to your resource to a specific IP address or address range.

Vercel deployments use dynamic IP addresses due to the dynamic nature of the platform. As a result, it is not possible to determine the deployment IP address or address range because the IP may change at any time as the deployment scales instances or across regions.

Allow All IP Addresses

To ensure your Vercel deployment is able to access the external resource, you should allow connections from all IP addresses. Typically this can be achieved by entering an IP address of (0.0.0.0).

While allowing connections from all IP addresses may be a concern, relying on IP allowlisting for security is generally ineffective and can lead to poor security practices.

To properly secure your database, we recommend using a randomly generated password, stored as an environment variable, at least 32 characters in length, and to rotate this password on a regular basis.

WARNING: In all cases, you should use SSL when connecting to a database.

Couldn't find the guide you need?