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 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则