We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a506b6 + 2700d0e commit 51c7b2bCopy full SHA for 51c7b2b
lib/s3.js
@@ -46,8 +46,10 @@ module.exports = CoreObject.extend({
46
47
if (accessKeyId && secretAccessKey) {
48
this.plugin.log('Using AWS access key id and secret access key from config', { verbose: true });
49
- s3Options.accessKeyId = accessKeyId;
50
- s3Options.secretAccessKey = secretAccessKey;
+ s3Options.credentials = {
+ accessKeyId: accessKeyId,
51
+ secretAccessKey: secretAccessKey,
52
+ };
53
}
54
55
if (signatureVersion) {
0 commit comments