MTLS for ECS Service

0

I don't want to use api gateway or App Mesh for MTLS. How to implement MTLS with Load balancer ?

asked 6 months ago321 views
2 Answers
0

If you’re referring to mutal TLS then an NLB with a TCP listener and target group of your containers. For mTLS support, create a TCP listener instead of a TLS listener. The load balancer passes the request through as is, so you can implement mTLS on the target.

profile picture
EXPERT
answered 6 months ago
0

You can consider using a TCP -> TCP listener configuration on Network Load Balancer (NLB) or Classic Load Balancer (CLB), and implement the mTLS on the target/backend. With a TCP -> TCP listener configuration, the Elastic Load Balancer is not doing anything with TLS / Layer 7, and is instead simply forwarding packets. This means that no SSL/TLS termination will be offloaded to the ELB and the SSL/TLS negotiation will occur directly between the client and backend instance.

AWS
Medha_C
answered 6 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions