Skip to content

Instantly share code, notes, and snippets.

@admhpr
Created October 14, 2019 20:41
Show Gist options
  • Save admhpr/940253ec029b34080ea2a8808198e866 to your computer and use it in GitHub Desktop.
Save admhpr/940253ec029b34080ea2a8808198e866 to your computer and use it in GitHub Desktop.
AWS.config.getCredentials(function(err) {
if (err) console.log(err.stack);
// credentials not loaded
else {
console.log("Access key:", AWS.config.credentials.accessKeyId);
console.log("Secret access key:", AWS.config.credentials.secretAccessKey);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment