Skip to content

Commit

Permalink
Update secrets.js
Browse files Browse the repository at this point in the history
  • Loading branch information
LanceMcCarthy committed Sep 26, 2023
1 parent c66850d commit 667f24b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/secrets.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ async function exportDynamicSecrets(akeylessToken, dynamicSecrets, apiUrl, expor
});

// CHECKING STRAIGHT VALUE FROM AKEYLESS
core.info(`\u001b[38;2;255;0;0mPRE-PROCESSING CHECK: STRAIGHT AKEYLESS VALUES`);
core.info(`\u001b[38;2;255;0;0mRESULT - api.getDynamicSecretValue (raw): ${dynamicSecret}`);
core.info(`\u001b[38;2;255;0;0mRESULT - api.getDynamicSecretValue (stringified): ${JSON.stringify(dynamicSecret)}`);
core.info(`\u001b[38;2;225;173;1mPRE-PROCESSING CHECK: STRAIGHT AKEYLESS VALUES`);
core.info(`\u001b[38;2;255;255;0mRESULT - api.getDynamicSecretValue (raw): ${dynamicSecret}`);
core.info(`\u001b[38;2;255;255;0mRESULT - api.getDynamicSecretValue (stringified): ${JSON.stringify(dynamicSecret, function replacer(key, value) { return value})}`);

if (dynamicSecret === null || dynamicSecret === undefined) {
return;
Expand Down

0 comments on commit 667f24b

Please sign in to comment.