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
已提問 8 個月前檢視次數 362 次
3 個答案
1
已接受的答案

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
專家
已回答 8 個月前
profile picture
專家
已審閱 7 天前
1

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
專家
已回答 8 個月前
profile picture
專家
已審閱 7 天前
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
已回答 8 個月前

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

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

回答問題指南