0
0
AWScloud~20 mins

Health checks with Route 53 in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Route 53 Health Check Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
How does Route 53 respond when a health check fails?
If you configure a Route 53 health check for a web server and the health check fails continuously, what will Route 53 do with DNS queries for that server's domain?
ARoute 53 stops routing traffic to the unhealthy endpoint and routes to healthy alternatives if configured.
BRoute 53 continues to respond with the IP address but adds a warning in the DNS response.
CRoute 53 stops responding to DNS queries for the domain.
DRoute 53 automatically deletes the DNS record associated with the unhealthy endpoint.
Attempts:
2 left
💡 Hint
Think about how DNS routing adapts to endpoint health.
Configuration
intermediate
2:00remaining
Which configuration enables Route 53 health checks to monitor an HTTP endpoint?
You want Route 53 to check if your web server is responding correctly on port 80 using HTTP. Which health check configuration is correct?
ASpecify IP address, port 80, protocol TCP.
BSpecify IP address, port 443, protocol HTTPS.
CSpecify domain name, port 80, protocol HTTP, and a path like '/health'.
DSpecify domain name, port 22, protocol SSH.
Attempts:
2 left
💡 Hint
HTTP health checks require protocol and path details.
Architecture
advanced
2:30remaining
Designing a fault-tolerant DNS setup with Route 53 health checks
You have two web servers in different regions behind Route 53. You want DNS to route traffic only to healthy servers automatically. Which setup achieves this?
ACreate two A records with failover routing and health checks on each server.
BCreate two A records with latency routing and health checks on each server.
CCreate one A record pointing to both servers without health checks.
DCreate two A records with weighted routing and no health checks.
Attempts:
2 left
💡 Hint
Latency routing combined with health checks improves fault tolerance across regions.
security
advanced
2:30remaining
Security considerations for Route 53 health checks
Which security practice is important when configuring Route 53 health checks for your private web servers?
ARestrict health check requests to Route 53 health check IP ranges using firewall rules.
BDisable authentication on the health check endpoint to avoid failures.
CAllow all IP addresses to access the health check endpoint.
DUse HTTP instead of HTTPS to simplify health check configuration.
Attempts:
2 left
💡 Hint
Think about limiting who can reach your health check endpoint.
Best Practice
expert
3:00remaining
Optimizing Route 53 health check intervals and failure thresholds
You want Route 53 to detect unhealthy endpoints quickly but avoid false positives from brief outages. Which combination of health check settings balances this best?
ASet interval to 60 seconds and failure threshold to 1.
BSet interval to 10 seconds and failure threshold to 1.
CSet interval to 5 seconds and failure threshold to 5.
DSet interval to 30 seconds and failure threshold to 3.
Attempts:
2 left
💡 Hint
Consider how often checks run and how many failures trigger unhealthy status.