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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
The Cloudflare Blog
IT之家
IT之家
雷峰网
雷峰网
小众软件
小众软件
博客园 - 叶小钗
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 【当耐特】
V
V2EX
博客园_首页
T
Tailwind CSS 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.