An enterprise has a critical microservices-based application running across two AWS accounts in an AWS Organization. The core architecture is as follows:
* An ingestion service runs in private subnets on Amazon ECS Fargate in VPC-A (`us-east-1`, Account 1).
* Outbound traffic from ECS tasks to external APIs passes through a single NAT Gateway located in the public subnet of Availability Zone `us-east-1a`.
* The service resolves internal domain names of dependency services in VPC-B (Account 2) using a Route 53 Private Hosted Zone (PHZ) created in Account 2.
* The state is persisted in an Amazon Aurora PostgreSQL Serverless v2 DB cluster in `us-east-1`.
The company needs to enhance the reliability and disaster recovery posture of the application to achieve a cross-region RTO of under 15 minutes and RPO of under 5 minutes to a standby region `us-west-2`. The solution must also eliminate single points of failure in the primary region's networking and ensure seamless DNS resolution of dependency services in VPC-B from the standby region.
Which combination of actions will meet these requirements? (Select TWO.)
- Deploy a secondary Aurora PostgreSQL cluster in `us-west-2` and configure Amazon Aurora Global Database to replicate data from `us-east-1`. Modify the VPC configuration in `us-east-1` to deploy a NAT Gateway in each Availability Zone where ECS tasks run, updating the private subnet route tables to point to their local NAT Gateway.Cevap
- Authorize the Route 53 Private Hosted Zone in Account 2 to be associated with the VPC in `us-west-2` (Account 1), and accept the association. Set up a Route 53 active-passive failover routing policy pointing to the Application Load Balancers in both regions, and associate the primary record with a custom Route 53 health check that monitors the health of the primary ingestion service.Cevap
- CEstablish database replication by configuring AWS Backup to take hourly copy-on-write snapshots of the Aurora PostgreSQL cluster in `us-east-1` and copy them to `us-west-2`. In the event of a disaster, restore the database from the latest snapshot in `us-west-2`.
- DIn Account 1, create a new Route 53 Private Hosted Zone in `us-west-2` with the same domain name as the zone in Account 2, and associate it with the `us-west-2` VPC to resolve dependency services locally.
- EConfigure a Route 53 active-passive failover routing policy pointing to the Application Load Balancers in both regions, and rely on the default Route 53 alias target health evaluation without attaching an explicit Route 53 health check to the primary record.