Skip to content
This repository was archived by the owner on Apr 10, 2026. It is now read-only.
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/RemoteResourceS3Controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module.exports = class RemoteResourceS3Controller extends BaseDownloadController
let { accessKeyId, secretAccessKey } = await this._fetchHmacSecrets(hmac);
objectPath.set(options, 'aws.key', accessKeyId);
objectPath.set(options, 'aws.secret', secretAccessKey);
objectPath.set(options, 'aws.sign_version', 4);
} else if (iam) {
let bearerToken = await this._fetchS3Token(iam);
objectPath.set(options, 'headers.Authorization', `bearer ${bearerToken}`);
Expand Down