1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

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

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)
}