惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
AWS databases now available on the Vercel Marketplace - V...
Authors · 2025-12-17 · via Vercel News

Today we’re introducing native support for AWS databases including Amazon Aurora PostgreSQL, Amazon Aurora DSQL, and Amazon DynamoDB on the Vercel Marketplace.

This gives developers a direct path to provision and manage scalable, production-ready AWS databases from within the Vercel dashboard with no manual setup required, and:

  • One-click support for creating a new AWS account, provisioning new AWS databases and linking them to your Vercel projects.

  • Improved developer experience with simplified region selection, secure credential handling, and unified monitoring of AWS database resources from Vercel.

  • Automatic environment variable for connection strings and credentials, securely stored within your Vercel project.

  • Free starter plan for new AWS customers, including $100 in credits, with deep links to manage or upgrade plans in the AWS console.

  • And coming soon: Provision databases into your existing AWS account, attach them to your projects, and access AWS databases directly inside v0.

import { Signer } from "@aws-sdk/rds-signer";

import { awsCredentialsProvider } from "@vercel/functions/oidc";

import { attachDatabasePool } from "@vercel/functions";

import { Pool } from "pg";

const signer = new Signer({

hostname: process.env.PGHOST,

port: Number(process.env.PGPORT),

username: process.env.PGUSER,

region: process.env.AWS_REGION,

credentials: awsCredentialsProvider({

roleArn: process.env.AWS_ROLE_ARN,

clientConfig: { region: process.env.AWS_REGION },

}),

});

export const pool = new Pool({

host: process.env.PGHOST,

user: process.env.PGUSER,

database: process.env.PGDATABASE || "postgres",

password: () => signer.getAuthToken(),

port: Number(process.env.PGPORT),

ssl: { rejectUnauthorized: false },

});

attachDatabasePool(pool);

Setup a database client

Link to headingGetting started

  1. Navigate to the Vercel Marketplace and select AWS

  2. Choose Create new account to provision a database

  3. Select your database type, region, and plan (including a free starter plan with $100 in credits for new AWS customers) and hit create

  4. Connect it to your project. Vercel automatically handles credentials and configuration

You can also try a working example by deploying the Movie Fetching Database template to see the integration end-to-end.