Skip to content

Commit

Permalink
Fix: 환경변수명 수정 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
minchodang authored May 19, 2024
1 parent cd351d9 commit e96b3f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/database/dynamodb/dynamodb.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { DynamoDBDocument } from "@aws-sdk/lib-dynamodb";
useFactory: () => {
const client = new DynamoDB({
credentials: {
accessKeyId: process.env.ACCESS_KEY_ID,
secretAccessKey: process.env.SECRET_ACCESS_KEY,
accessKeyId: process.env.AWS_ACCESS_KEY_ID,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
},
region: process.env.REGION,
});
Expand Down

0 comments on commit e96b3f3

Please sign in to comment.