??? note "nlb.additional_listeners Map"
nlb.additional_listeners.`port` String
Required. The additional port and protocol for the Network Load Balancer to listen on.
Accepted protocols include `tcp`, `udp` and `tls`. If the protocol is not specified, `tcp` is used by default.
nlb.additional_listeners.`healthcheck` Map
Specify the health check configuration for your additional listener on the Network Load Balancer.
```yaml
nlb:
additional_listeners:
- healthcheck:
port: 80
healthy_threshold: 3
unhealthy_threshold: 2
interval: 15s
timeout: 10s
```
nlb.additional_listeners.healthcheck.`port` String
The port that the health check requests are sent to. Specify this if your health check should be performed on a different port than the container target port.
nlb.additional_listeners.healthcheck.`healthy_threshold` Integer
The number of consecutive health check successes required before considering an unhealthy target healthy. The default is 3. Range: 2-10.
nlb.additional_listeners.healthcheck.`unhealthy_threshold` Integer
The number of consecutive health check failures required before considering a target unhealthy. The default is 3. Range: 2-10.
nlb.additional_listeners.healthcheck.`interval` Duration
The approximate amount of time, in seconds, between health checks of an individual target. The value can be 10s or 30s. The default is 30s.
nlb.additional_listeners.healthcheck.`timeout` Duration
The amount of time, in seconds, during which no response from a target means a failed health check. The default is 10s.
nlb.additional_listeners.`target_container` String
A sidecar container that takes the place of a service container.
nlb.additional_listeners.`target_port` Integer
The container port that receives traffic. Specify this field if the container port is different from `nlb.port`, the listener port.
nlb.additional_listeners.`ssl_policy` String
The security policy that defines which protocols and ciphers are supported. To learn more, see [this doc](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies).
nlb.additional_listeners.`stickiness` Boolean
Indicates whether sticky sessions are enabled.