Cognito OIDC and ALB header auth validation

0

Hi, we need to validate the JWT auth header from Cognito connected with an external IDP. Is this possible with ALB filters or something instead of API Gateway auth? Thanks in advance.

Sergio
asked 7 months ago326 views
3 Answers
0
Accepted Answer

The built-in Cognito authentication for ALB primarily focuses on browser-based session authentication using cookies. If you're relying on JWT tokens provided in headers, especially for API-like behavior, the ALB built-in feature may not be the best fit for this scenario.

profile picture
EXPERT
answered 7 months ago
0

Hello. If you're using Amazon Cognito along with an Application Load Balancer (ALB) and want to perform authentication and authorization based on JWT tokens from Cognito, you can indeed leverage ALB's built-in authentication actions with Cognito.

Here's a basic outline on how you can achieve this:

Setting up Cognito:

  • Set up an Amazon Cognito user pool.
  • Integrate your external identity provider (IDP) with Cognito.
  • Note the domain name and the ARN of the user pool client.

Configuring the ALB:

  • In the Amazon EC2 console, select your ALB.
  • Choose the "Listeners" tab and then "View/edit rules" for the listener.
  • Choose the "+" to add a rule.
  • Choose "Insert Rule", and then select "add condition" for the source IP addresses.
  • Choose the check mark to save the action, and then choose the check mark to save the rule.
  • In the "Advanced" condition, select "Authenticate" and then "Cognito".
  • For "Authenticate using Cognito", choose the user pool, client ID, and domain that you configured in the Cognito console.

https://docs.aws.amazon.com/elasticloadbalancing/latest/application/listener-authenticate-users.html

Regards, Andrii

profile picture
EXPERT
answered 7 months ago
0

Hello Andrii, Sorry, but I omitted some info (my mistake). I need to accept requests with a valid auth token header and Cognito is blocking it if I don't have a valid cookie session. Thanks again.

Sergio
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions