1 Answer
- Newest
- Most votes
- Most comments
0
Hello,
The NLB Listeners support the following protocols: TCP, TLS, UDP, TCP_UDP.
The annotation service.beta.kubernetes.io/aws-load-balancer-backend-protocol specifies whether to use TLS for the backend traffic between the load balancer and the kubernetes pods.
If you specify ssl as the backend protocol, NLB uses TLS connections for the traffic to your kubernetes pods in case of TLS listeners
You can specify ssl or tcp (default). HTTPS is not supported. If you want to configure HTTPS listener, you will need to implement Kubernetes ingress to create ALB instead of NLB and Kubernetes Service.
Refer to doc to know more.

The ALB is working in this case for HTTPS traffic; thanks for the response