© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
Drizzle TeamDT
Drizzle Team•2y ago•
5 replies
Drew

setting up AWS with Drizzle

Hello I’m trying to configure drizzle to connect to my AWS RDS. The docs state:

``
import { drizzle } from 'drizzle-orm/aws-data-api/pg';
import { RDSDataClient } from '@aws-sdk/client-rds-data';
import { fromIni } from '@aws-sdk/credential-providers';
const rdsClient = new RDSDataClient({
credentials: fromIni({ profile: process.env['PROFILE'] }),
region: 'us-east-1',
});
const db = drizzle(rdsClient, {
database: process.env['DATABASE']!,
secretArn: process.env['SECRET_ARN']!,
resourceArn: process.env['RESOURCE_ARN']!,
});
await db.select().from(...)...; ```

I’m looking at a page similar to this YouTube tutorial and I’m completely lost what profile, database and ARNs are. If you have successfully set this up can you please point me in the right direction. I know this is probably stupid question sorry 😣
IMG_0091.png
Drizzle TeamJoin
The official Discord for all Drizzle related projects, such as Drizzle ORM, Drizzle Kit, Drizzle Studio and more!
11,879Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Setting up drizzle.config.ts for AWS
Drizzle TeamDTDrizzle Team / help
16mo ago
Aws Rds with drizzle
Drizzle TeamDTDrizzle Team / help
3y ago
Setting up Drizzle with 2 DB sources
Drizzle TeamDTDrizzle Team / help
2y ago
Setting triggers with drizzle
Drizzle TeamDTDrizzle Team / help
2y ago