Skip to content

Instantly share code, notes, and snippets.

@sdesalas
Last active March 17, 2023 12:01
Show Gist options
  • Save sdesalas/c36624db5eba293ccf3eeb838ee8e37c to your computer and use it in GitHub Desktop.
Save sdesalas/c36624db5eba293ccf3eeb838ee8e37c to your computer and use it in GitHub Desktop.
var AWS = require('aws-sdk');
console.log(process.env);
var sts = new AWS.STS();
sts.getCallerIdentity({},
(err, data) => err && console.log("Error", err) || console.log(JSON.stringify(data.Account)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment