Cognito: Key Rotation

0

Please confirm if Cognito rotates the keys used to sign ID and Access tokens. The docs do not specify.

If they are rotated, how often?

MT
已提問 2 年前檢視次數 389 次
1 個回答
0

Yes the document does not specify whether the keys are rotated. However, Cognito service may need to rotate the keys if required.

Hence, we recommend you to cache each key present in JWKS URI [1] against "kid". When you have a token to validate, then first check the "kid" present in the header of that JWT token. If you have a key with that "kid" in your cache then use that key. Otherwise, query the JWKS URI to fetch recent keys and update your local cache with the new "kid". This will help to make the application more robust and you will be able to handle the scenario if the public key is rotated in unforeseen future.

--References--

[1] The format of the JWKS URI is following (replace {region} with AWS region and replace {userPoolId} with the ID of your user pool): https://cognito-idp.{region}.amazonaws.com/{userPoolId}/.well-known/jwks.json

AWS
支援工程師
Tarit_G
已回答 2 年前
  • Where should we cache them? Users can find the region and user pool ID with a bit of snooping, so the JWKS is essentially public. Would hardcoding them be ill-advised?

  • You need to cache it in server side of your resource server (means where you are performing JWT validation before providing access to your secured resources).

  • Thank you but I meant what caching method/service? Right now I'm trying S3 but it is convoluted compared to just downloading the JWKS each time as I have been doing. This is in a Lambda authorizer for APIGW written in Go. What did you have in mind for caching?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南