Q: 9
A security engineer is designing a solution that will provide end-to-end encryption between clients
and Docker containers running in Amazon Elastic Container Service (Amazon ECS). This solution must
also handle volatile traffic patterns.
Which solution would have the MOST scalability and LOWEST latency?
Options
Discussion
Had something like this in a mock in the official AWS study guide and practice labs, usually points toward C for end-to-end encryption plus scalability. If you want to be sure, I'd check both sources again.
B tbh. Application Load Balancer can terminate TLS and handle traffic patterns well, plus it supports features like host-based routing. I think because ALB is higher layer, it's more flexible for scaling web services. Not totally sure though since the wording about "end-to-end" could be a trap.
C does it. TLS stays encrypted all the way to the container, so you get true end-to-end. No extra hops for decryption so lowest latency too. Pretty sure that's the intention here, but correct me if you see something I missed.
My vote is C . End-to-end encryption stays intact since NLB with TCP just passes through traffic, so the containers do TLS. Not totally certain, but that's what fits the requirement best here.
C lowest latency since it doesn't terminate TLS at the load balancer. End-to-end stays intact. Unless I'm missing something obvious here.
C/D? Seen similar advice in official guide and practice test.
C not A. Terminating TLS at the load balancer (A) breaks end-to-end, which is a common trap here.
C is right
Its A, at least that’s what I recall from official practice material. Network Load Balancer terminates TLS then re-encrypts to the backend, so you get scalability and some level of end-to-end. Anybody else used the practice test or AWS docs for this?
Guessing C makes sense here. Network Load Balancer with a TCP listener just forwards encrypted packets, so the containers handle TLS and you get true end-to-end encryption. Pretty sure that's most scalable and lowest latency for this use case.
Be respectful. No spam.