DevOps Interview DropAdvanced TierScenario+50 XP on read
What happens if an Auto Scaling instance never becomes healthy?
Core Summary
Auto Scaling terminates and replaces an instance that never passes health checks, which is fine once and expensive in a loop. How long you burn depends on the grace period, the check thresholds, and which health check type the group is actually using. The fix is working out why it's unhealthy: usually startup config, a wrong health endpoint, or a grace period shorter than boot time.
Hints
Hint 1: Health checks look for a green signal; if they never get it, the instance is terminated
Hint 2: Check: startup logs, resource limits, health check endpoint
Hint 3: Long termination times mean wasted resources and longer recovery
Reported in interviews at AWS, Amazon, Google Cloud