1.0.4 • Published 2 years ago
brianfoody-aws-sso-sdk-v3 v1.0.4
AWS SSO Authorisation Wrapper
Utility library that allows for easily refreshing AWS SSO sessions and fetching SDK access tokens using them.
It reads existing sessons from AWS cache locaton and writes new sessons back to there to integrate with other AWS tools
AWS Client
You can create an AWS client easily. All you need to pass in is the home directory locaton and a utilty to open a browser window.
This makes it easy to use between web, mobile, electon and local scripts.
const authoriser = makeSsoAuthoriser({
configManager: makeAwsConfigManager({
homeDir: os.homedir(),
}),
browser: {
open: async (url) => {
await open(url);
},
},
});
SSO Aware
The SDK is immediately aware of your SSO access by reading your /.aws/sso/cache/*.json file.