-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AWS::ElasticLoadBalancingV2::Listener ] - [Coverage] - Support Listener Attribute #2121
Comments
Hi from the Elastic Load Balancing team! Our team is actively working on adding listener attributes support to our Cloudformation handler. We will share additional details soon. |
Hi from the Elastic Load Balancing team! Our team has completed implementation for listener attributes support in our Cloudformation handler. We are now preparing to deploy the feature to all regions. We tentatively estimate that it will take ~2 weeks to deploy the feature to all regions. Once the feature is deployed to all regions, customers will be able to manage their listener attributes through Cloudformation We will continue to update this issue as we have updates! |
Update: Listener attributes support in Cloudformation handler is available in all commercial regions and Gov clouds. |
Does this also apply for Gateway Load Balancers? |
@andreybutenko
Is this feature not supported yet? "LBListener49E825B4": {
"Type": "AWS::ElasticLoadBalancingV2::Listener",
"Properties": {
"DefaultActions": [
{
"TargetGroupArn": {
"Ref": "LBListenerTargetGroupF04FCF6D"
},
"Type": "forward"
}
],
"ListenerAttributes": [
{
"Key": "tcp.idle_timeout.seconds",
"Value": "100"
}
],
"LoadBalancerArn": {
"Ref": "LB8A12904C"
},
"Port": 80,
"Protocol": "TCP"
}
}, |
@mazyu36 Thanks for reporting this. Our team is working on a fix. Will update here once the fix is out. |
@jsnappzelis Yes, it will also work for Gateway Load Balancers. |
Update: The fix is deployed to all regions. |
Thank you. I've confirmed that deployment is possible, so close this issue. |
Name of the resource
AWS::ElasticLoadBalancingV2::Listener
Resource name
No response
Description
Network Load Balancer now supports TCP idle timeout (Ref: Announcement).
To use this, we need to set
tcp.idle_timeout.seconds
to the listener attributes.However, listener attributes cannot be configured in the current CloudFormation.
In the case of CLI, it can be set using the following command:
Ref: https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-nlb-tcp-configurable-idle-timeout/
Other Details
No response
The text was updated successfully, but these errors were encountered: