Skip to content

Instantly share code, notes, and snippets.

@paulozullu
Created May 1, 2021 17:16
Show Gist options
  • Save paulozullu/202ddc8e0111950a2eb180329a4e77dd to your computer and use it in GitHub Desktop.
Save paulozullu/202ddc8e0111950a2eb180329a4e77dd to your computer and use it in GitHub Desktop.
AWS
const sts = new AWS.STS();
sts.getCallerIdentity({}, function (err, data) {
if (err) {
console.log('Error', err);
} else {
console.log(JSON.stringify({ data }));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment