diff --git a/packages/bruno-cli/src/runner/awsv4auth-helper.js b/packages/bruno-cli/src/runner/awsv4auth-helper.js index 4a2ff5aa2..8714ae39c 100644 --- a/packages/bruno-cli/src/runner/awsv4auth-helper.js +++ b/packages/bruno-cli/src/runner/awsv4auth-helper.js @@ -10,7 +10,8 @@ async function resolveAwsV4Credentials(request) { if (isStrPresent(awsv4.profileName)) { try { credentialsProvider = fromIni({ - profile: awsv4.profileName + profile: awsv4.profileName, + ignoreCache: true }); credentials = await credentialsProvider(); awsv4.accessKeyId = credentials.accessKeyId; diff --git a/packages/bruno-electron/src/ipc/network/awsv4auth-helper.js b/packages/bruno-electron/src/ipc/network/awsv4auth-helper.js index 4a2ff5aa2..8714ae39c 100644 --- a/packages/bruno-electron/src/ipc/network/awsv4auth-helper.js +++ b/packages/bruno-electron/src/ipc/network/awsv4auth-helper.js @@ -10,7 +10,8 @@ async function resolveAwsV4Credentials(request) { if (isStrPresent(awsv4.profileName)) { try { credentialsProvider = fromIni({ - profile: awsv4.profileName + profile: awsv4.profileName, + ignoreCache: true }); credentials = await credentialsProvider(); awsv4.accessKeyId = credentials.accessKeyId;