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

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

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

回答問題指南