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
demandé il y a 2 ans389 vues
1 réponse
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
INGÉNIEUR EN ASSISTANCE TECHNIQUE
Tarit_G
répondu il y a 2 ans
  • 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?

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions