AWS Databases coming to the Vercel Marketplace

Published: (December 1, 2025 at 08:00 AM EST)
2 min read

Source: Vercel Blog

We are expanding our partnership with AWS to make it faster for developers to build and scale with AWS infrastructure. On December 15th, Aurora PostgreSQL, Amazon DynamoDB, and Aurora DSQL will be available as native integrations in the .Vercel Marketplace. These integrations bring the power and scalability of AWS databases directly into the Vercel platform, allowing developers to provision, manage, and connect to their databases with just a few clicks, all while benefiting from Vercel’s edge‑first deployment model.

What’s Included

  • Aurora PostgreSQL – Fully managed PostgreSQL‑compatible relational database with high performance and automatic scaling.
  • Amazon DynamoDB – Serverless NoSQL database that offers single‑digit millisecond latency at any scale.
  • Aurora DSQL – A new query‑engine offering advanced analytics capabilities on Aurora data.

How It Works

  1. Add the integration – From the Vercel dashboard, select the desired AWS database integration and follow the guided setup.
  2. Configure credentials – Vercel securely stores your AWS IAM credentials and handles the connection lifecycle.
  3. Deploy – Your application can now reference the database via environment variables that Vercel injects at build and runtime.

Benefits for Developers

  • Speed – Provision databases in seconds without leaving the Vercel UI.
  • Security – Managed IAM roles and encrypted connections.
  • Scalability – Automatic scaling handled by AWS, with Vercel’s edge network delivering low‑latency access.
  • Unified experience – Manage both your front‑end deployment and back‑end data resources from a single console.

Getting Started

Visit the Vercel Marketplace, select the AWS database you need, and follow the step‑by‑step wizard. Detailed documentation and sample projects are available to help you integrate the databases into Next.js, Remix, or any other framework supported by Vercel.

Stay tuned for more integrations as we continue to deepen our partnership with AWS.

Back to Blog

Related posts

Read more »

Terraform Project: Simple EC2 + Security Group

Project Structure terraform-project/ │── main.tf │── variables.tf │── outputs.tf │── providers.tf │── terraform.tfvars │── modules/ │ └── ec2/ │ ├── main.tf │...