Created
October 14, 2019 20:41
-
-
Save admhpr/940253ec029b34080ea2a8808198e866 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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