A healthcare technology company hosts its patient check-in portal at the apex domain patientcheck.com. The primary environment runs on Amazon EC2 instances behind an Application Load Balancer (ALB) in the us-east-1 Region. The company wants to implement an active-passive disaster recovery strategy. If the primary environment in us-east-1 experiences an outage, Route 53 must automatically redirect all incoming client traffic to a standby static maintenance website hosted in an Amazon S3 bucket in the us-west-2 Region. Which combination of Route 53 configurations will meet these requirements?
- AConfigure a primary Failover CNAME record for patientcheck.com pointing to the Application Load Balancer DNS name, and configure a secondary Failover CNAME record pointing to the Amazon S3 bucket website endpoint.
- BConfigure a primary Latency Alias record for patientcheck.com pointing to the Application Load Balancer with Evaluate Target Health set to Yes, and configure a secondary Latency Alias record pointing to the Amazon S3 bucket website endpoint.
- Configure a primary Failover Alias record for patientcheck.com pointing to the Application Load Balancer with Evaluate Target Health set to Yes, and configure a secondary Failover Alias record pointing to the Amazon S3 bucket website endpoint.Answer
- DConfigure a primary Failover Alias record for patientcheck.com pointing to the Application Load Balancer with Evaluate Target Health set to No, and create a Route 53 HTTP health check to monitor the Amazon S3 bucket website endpoint.
Answer
Configure a primary Failover Alias record for patientcheck.com pointing to the Application Load Balancer with Evaluate Target Health set to Yes, and configure a secondary Failover Alias record pointing to the Amazon S3 bucket website endpoint.
The correct configuration uses a primary Failover Alias record pointing to the Application Load Balancer with Evaluate Target Health set to Yes, and a secondary Failover Alias record pointing to the Amazon S3 bucket website endpoint. Route 53 Alias records allow the zone apex to point directly to AWS resources without violating DNS standards. Enabling Evaluate Target Health ensures Route 53 monitors the health of the Application Load Balancer using the health of its targets, automatically failing over to the secondary S3 bucket when the load balancer becomes unhealthy.
Step-by-Step Solution
Key Concept
Active-passive DNS failover using Route 53 Failover Alias records at the zone apex.