Why this matters
One AWS region fails — your service is down for 30 minutes. Multi-region deployment fixes this, but how? You can run the second region passively (cold or warm standby that takes traffic only on disaster) or actively (both regions serve users continuously). The choice cascades through every architectural decision: replication strategy, consistency model, DNS, costs.
Active-active sounds obviously better — until you confront writes-from-two-places, conflict resolution, and 2× the infra bill. Most teams who say they want active-active actually want the easier option done well.