Set SameSite cookies for AWS Application Load Balancer

0

I'm looking to set SameSite cookies for AWS ALB, is there any to install it? Thank you

iamnick
已提问 1 年前3411 查看次数
2 回答
4

This is not correct information, there is no feature on ALB to add headers. It looks like you asked ChatGPT and it hallucinated this? Please remove this article.

AWS
专家
zobAWS
已回答 7 个月前
1

Currently, It is not possible to edit/modify the cookies generated by the AWS Application Load Balancer.

Application Load Balancers support both duration-based cookies and application-based cookies. Sticky sessions are enabled at the target group level. Refer here

Duration-based stickiness :

With cross-origin resource sharing (CORS) requests, some browsers require SameSite=None; Secure to enable stickiness. In this case, the load balancer generates a second stickiness cookie, AWSALBCORS, which includes the same information as the original stickiness cookie plus the SameSite attribute. Clients receive both cookies.

Application-based stickiness :

With cross-origin resource sharing (CORS) requests, to enable stickiness, the load balancer adds the SameSite=None; Secure attributes to the load balancer generated application cookie only if the user-agent version is Chromium80 or above.

SameSite=None; Secure means that cookies will be created and sent through requests over HTTPS . ALB Sticky sessions always pair SameSite=None with the Secure attribute.

Further as a work around for your use-case . You can look into configuring CloudFront to add a custom header to an incoming request before it is sent to the CloudFront distribution's origin.

For more information on using CloudFront to add custom headers to origin requests, Please refer here

profile picture
已回答 7 个月前

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

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

回答问题的准则