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 174dc6c780
commit c121300840
1 changed files with 2 additions and 2 deletions

View File

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