Fixing an issue with the DynamoDB integration, didn't specify the correct terms for the AWS credentials.

This commit is contained in:
mike12345567 2021-04-19 22:24:13 +01:00
parent ef268014c1
commit 806bd4e06b
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ const SCHEMA = {
type: FIELD_TYPES.PASSWORD,
required: true,
},
secretKey: {
secretAccessKey: {
type: FIELD_TYPES.PASSWORD,
required: true,
},
@ -114,7 +114,7 @@ class DynamoDBIntegration {
})
}
async connect() {
connect() {
AWS.config.update(this.config)
}