Report hasn't been filed before.
What version of drizzle-orm are you using?
0.44.3
What version of drizzle-kit are you using?
0.31.4
Other packages
No response
Describe the Bug
Hello,
When running:
I get the following error:
➜ bunx drizzle-kit check
No config path provided, using default 'drizzle.config.ts'
Reading config file '/Users/kinan/repos/nautika/apps/server/drizzle.config.ts'
Error Please provide required params for AWS Data API driver:
[x] database: undefined
[✓] secretArn: 'postgresql'
It refers to "AWS Data API", but I'm not using it. My config explicitly uses the PostgreSQL dialect:
export default defineConfig({
schema: "./src/db/schema/index.ts",
dialect: "postgresql",
dbCredentials: {
host: env.PG_HOST,
port: env.PG_PORT,
user: env.PG_USER,
password: env.PG_PASSWORD,
database: env.PG_DB,
ssl: env.PG_SSL,
},
});
This seems similar to an older issue reported for the push command, where drizzle-kit mistakenly defaults to AWS Data API.
A comment there also mentions this happening with check.
Report hasn't been filed before.
What version of
drizzle-ormare you using?0.44.3
What version of
drizzle-kitare you using?0.31.4
Other packages
No response
Describe the Bug
Hello,
When running:
I get the following error:
It refers to "AWS Data API", but I'm not using it. My config explicitly uses the PostgreSQL dialect:
This seems similar to an older issue reported for the
pushcommand, wheredrizzle-kitmistakenly defaults to AWS Data API.A comment there also mentions this happening with
check.