A company has deployed the same web application into two Regions and owns the domain example.com. Visitors should be sent to whichever Regional deployment answers them fastest, and away from one that has stopped responding. Which TWO components deliver that?

AWS Certified Cloud Practitioner (CLF-C02), objective 3. Cloud technology and services medium

Machine-checked — no person has signed for it. This question was read against the source cited below by an automated pass, which found no contradiction. That is a weaker claim than it sounds: the same kind of process wrote the question, so it can confirm its own mistake.

Treat it as a good draft rather than as settled fact, and read the source below before you rely on it. It is not used in mock exams here — only questions a person has signed for are.

The options

Choose 2.

Correct Amazon Route 53 with a latency-based routing policy and health checks on each Regional endpoint

Correct. Route 53 is the authoritative DNS service, and the routing policy plus health checks are what decide which Region's address a given visitor is given, and what stops handing out an address that is failing its check.

Correct An Elastic Load Balancer in each Region distributing requests across that Region's instances

Correct. DNS gets the visitor to a Region; something inside the Region still has to spread the requests across healthy instances and Availability Zones, and that is the load balancer's job.

Not correct VPC peering between the two Regions

Wrong for this purpose. Peering lets resources in the two VPCs address each other privately. It plays no part in deciding where a visitor's request goes.

Not correct A NAT gateway in each public subnet

Wrong. A NAT gateway is for outbound connections from private subnets. Inbound visitor traffic never passes through one.

Not correct An S3 bucket configured for static website hosting

Wrong. That is a way to serve a static site cheaply; it neither answers DNS queries for the domain nor balances traffic across Regions.

Why

Keep the two layers separate in your head. Route 53 answers the question 'which address does this name resolve to', and its routing policies — simple, weighted, latency-based, failover, geolocation, geoproximity, multivalue — are how you express a global answer. Elastic Load Balancing answers 'which of my healthy servers gets this request' inside one Region. Route 53 also registers domains and runs the health checks that make failover automatic.

Where this comes from

Cited
AWS exam guide task statement 3.5

Practise this

Reading one question is not practice. The trainer will draw a set from objective 3 and space the ones you get wrong.

Practise AWS Certified Cloud Practitioner (CLF-C02)

More questions on this objective

All questions on Cloud technology and services