A telecommunications company is designing a new real-time network fault monitoring system on AWS. The application will be deployed across two AWS Regions: `us-west-2` (Primary) and `us-east-1` (Secondary). The architecture requires an active-passive disaster recovery strategy with a Recovery Time Objective (RTO) of minutes and a Recovery Point Objective (RPO) of minute. The application runs on Amazon EC2 instances in private subnets, which must regularly connect to external diagnostic probes on the internet. For internal service communication, microservices rely on a shared Route 53 Private Hosted Zone named `corp.internal`. Which of the following architectures meets these requirements while minimizing regional failover time and ensuring high availability within each Region?
- ADeploy an Amazon Aurora Global Database with the primary cluster in us-west-2 and a secondary cluster in us-east-1. In each VPC, deploy a single NAT Gateway in one Availability Zone to optimize costs, and route all outbound private subnet traffic through it. Associate the Route 53 Private Hosted Zone corp.internal with the VPCs in both Regions. Use Route 53 Application Recovery Controller (ARC) routing controls to manage regional traffic failover.
- Deploy an Amazon Aurora Global Database with the primary cluster in us-west-2 and a secondary cluster in us-east-1. In both VPCs, deploy a NAT Gateway in each Availability Zone. Associate the Route 53 Private Hosted Zone corp.internal with the VPCs in both Regions. Use Route 53 Application Recovery Controller (ARC) routing controls to manage traffic redirection between Regions.Cevap
- CDeploy Amazon RDS PostgreSQL Multi-AZ in us-west-2 with a cross-region read replica in us-east-1. In both VPCs, deploy a NAT Gateway in each Availability Zone. Associate the Route 53 Private Hosted Zone corp.internal with both VPCs. Use Route 53 Failover routing policies to route traffic. During a regional outage, manually promote the read replica to a standalone database and update Route 53.
- DDeploy an Amazon Aurora Global Database with the primary cluster in us-west-2 and a secondary cluster in us-east-1. In both VPCs, deploy a NAT Gateway in each Availability Zone. Create the Route 53 Private Hosted Zone corp.internal and associate it only with the us-west-2 VPC. Use Route 53 Application Recovery Controller (ARC) routing controls to manage regional traffic failover.