Skip to content

Commit

Permalink
fix: sso credential resolution failure when sso-session access token …
Browse files Browse the repository at this point in the history
…requires a refresh (#4443)

This commit fixes an issue which caused the SSO credentials provider to
fail to resolve credentials if a cached access token associated with an
sso-session required a refresh.

Reason for the issue is that SSOTokenProvider.load() skips token refresh
if another refresh had been kicked off within the last 30 seconds. In
this case, SSOTokenProvider.load() was called twice when credentials
were being resolved: once from SSOTokenProvider constructor (via .get())
and second time from SsoCredentials.getToken() method.

If the access token on disk had expired, the first call to
SSOTokenProvider.load() from SSOTokenProvider constructor kicked off
a token refresh. When SsoCredentials.getToken() called
SSOTokenProvider.load() again immediately, SSOTokenProvider would skip
the token refresh and invoke the SsoCredentials.getToken() callback
without having a valid token.

Because of this, SsoCredentials did not get a valid SSO access token
from SSOTokenProvider and it could not fetch AWS credential from AWS
IAM Identity Center.

Loading the SSO access token with SSOTokenProvider.get() instead of
SSOTokenProvider.load() fixes the issue as SSOTokenProvider.get()
tracks the calls to .get(), triggers the load just once and invokes
all the callbacks when the new token is available.

This way SsoCredentials.getToken() will receive a valid access token
once the initial load kicked off by the SSOTokenProvider constructor
completes and SsoCredentials can use the refreshed token to fetch AWS
credentials from AWS IAM Identity Center.

Fixes #4441
  • Loading branch information
sjakthol committed May 22, 2024
1 parent 3fef5d0 commit c655efa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/next-release/bugfix-SSO-4dba7ee8.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "bugfix",
"category": "SSO",
"description": "fix sso credential resolution failure when sso-session access token requires a refresh"
}
2 changes: 1 addition & 1 deletion lib/credentials/sso_credentials.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
var ssoTokenProvider = new AWS.SSOTokenProvider({
profile: profileName,
});
ssoTokenProvider.load(function (err) {
ssoTokenProvider.get(function (err) {
if (err) {
return callback(err);
}
Expand Down

1 comment on commit c655efa

@Ishmaello
Copy link

@Ishmaello Ishmaello commented on c655efa May 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aws account was blocked due unpaid subscriptions for some required credintials but ama check if the account not been trash 3 I guess it supposed,I'm just broke for life but wish to continue here

Please sign in to comment.