Skip to content

Commit

Permalink
fix aws key id new naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
unicorn-here committed Jul 5, 2023
1 parent d3bc64d commit f600546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/mocha/dynamoDBLocalFixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { ChildProcess } from 'child_process'
import DDBLocal from 'dynamodb-local'
import { deleteAllTables } from './dbSetup'

process.env.AWS_ACCESS_KEY_ID = 'my_access_key'
process.env.AWS_SECRET_ACCESS_KEY = 'my_secret_key'
process.env.AWS_ACCESS_KEY_ID = 'myaccesskey'
process.env.AWS_SECRET_ACCESS_KEY = 'mysecretkey'

const dbPort = Number(process.env.DYNAMODB_LOCAL_PORT || 8000)

Expand Down

0 comments on commit f600546

Please sign in to comment.