A healthcare technology company is building a patient telemetry monitoring system on AWS. The architecture consists of an application tier running on Amazon EC2 instances in an Auto Scaling group across multiple Availability Zones, and a database tier running on an Amazon Aurora PostgreSQL-Compatible Edition cluster. The system must ingest real-time telemetry data from local hospital gateways. The company requires a high-availability design in the primary region of us-east-1, and a disaster recovery (DR) setup in us-west-2 that achieves a Recovery Time Objective (RTO) of 15 minutes and a Recovery Point Objective (RPO) of 1 minute. The EC2 instances must be able to securely access external APIs on the internet to retrieve patient metadata. Additionally, the application tier uses a Route 53 Private Hosted Zone for internal database endpoint resolution. Which configuration meets these requirements while minimizing cost and operational complexity?
- ADeploy the EC2 Auto Scaling group in us-east-1 across three Availability Zones (AZs) with a NAT Gateway in each AZ. Configure hourly snapshots of the Amazon Aurora cluster, copy them to us-west-2, and configure a script to restore the database from the latest snapshot in us-west-2 during a failover event. Configure a Route 53 Failover routing policy with health checks pointing to the public ALBs in both regions.
- Deploy the EC2 Auto Scaling group in us-east-1 across three Availability Zones (AZs) with a NAT Gateway in each AZ. Implement Amazon Aurora Global Database with the primary cluster in us-east-1 and a secondary cluster with a read replica in us-west-2. Configure a Route 53 Failover routing policy with health checks pointing to the public Application Load Balancers (ALBs) in both regions, and associate the internal Route 53 Private Hosted Zone with both the us-east-1 and us-west-2 VPCs.Cevap
- CDeploy the EC2 Auto Scaling group in us-east-1 across three Availability Zones (AZs) with a single NAT Gateway in one of the AZs. Implement Amazon Aurora Global Database with the primary cluster in us-east-1 and a secondary cluster in us-west-2. Configure a Route 53 Latency routing policy with health checks pointing to the public ALBs in both regions, and associate the internal Route 53 Private Hosted Zone only with the us-east-1 VPC.
- DDeploy the EC2 Auto Scaling group in us-east-1 across three Availability Zones (AZs) with a NAT Gateway in each AZ. Set up a standard Amazon Aurora PostgreSQL cluster in us-east-1 and a separate cluster in us-west-2. Configure Aurora Replica Auto Scaling to automatically replicate data across regions and promote the us-west-2 cluster in the event of an outage in us-east-1. Configure a Route 53 Failover routing policy with health checks pointing to the public ALBs.