aws-cloudformation / cloudformation-coverage-roadmap

The AWS CloudFormation Public Coverage Roadmap
https://aws.amazon.com/cloudformation/
Creative Commons Attribution Share Alike 4.0 International
1.11k stars 54 forks source link

[AWS::ElasticLoadBalancingV2::Listener ] - [Coverage] - Support Listener Attribute #2121

Open mazyu36 opened 1 week ago

mazyu36 commented 1 week ago

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:

aws elbv2 modify-listener-attributes \
          --listener-arn arn:aws:elasticloadbalancing:us-east-1:000011112222:listener/network/NLBTest/123/123 \
          --attributes \
              Key=tcp.idle_timeout.seconds,Value=600 

Ref: https://aws.amazon.com/blogs/networking-and-content-delivery/introducing-nlb-tcp-configurable-idle-timeout/

Other Details

No response

andreybutenko commented 1 week ago

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.

andreybutenko commented 1 week ago

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!