An enterprise manages its applications using a multi-account AWS Organizations structure. A critical multi-tier application has its primary deployment in the us-east-1 Region under a Production Account, and its disaster recovery (DR) environment in the us-west-2 Region under a DR Account. The database tier consists of an Amazon Aurora PostgreSQL Global Database, with the primary cluster in us-east-1 and a secondary cluster in us-west-2. The enterprise has a target Recovery Time Objective (RTO) of minutes. During a recent DR drill, the solutions architect identified the following issues:
1. Internal microservices running in the us-west-2 VPC could not resolve the DNS names of internal dependencies defined in the Route 53 Private Hosted Zone (PHZ) hosted in the us-east-1 Production Account.
2. The database failover took longer than the RTO because it required manual database promotion and manual updates to the database connection string in the application configuration.
Which TWO actions should the solutions architect take to resolve these issues and meet the RTO? (Select TWO.)
- Create a VPC association authorization for the us-west-2 VPC in the primary Production Account, and then associate the us-west-2 VPC with the Route 53 Private Hosted Zone using the AWS CLI or SDK from the DR Account.Cevap
- Create a Route 53 CNAME record with a low Time to Live (TTL) of seconds pointing to the active Aurora regional cluster endpoint, and write an AWS Lambda function triggered by Amazon EventBridge to automate the promotion of the secondary Aurora cluster and update the CNAME record during a failover event.Cevap
- CRe-create the Route 53 Private Hosted Zone in the DR Account with the same domain name, and configure Route 53 latency-based routing to resolve the internal service names across both regions.
- DConfigure Route 53 active-passive failover routing records pointing directly to the regional Aurora database cluster endpoints, and associate them with Route 53 health checks configured to monitor database port over the public internet.
- EImplement a pilot light disaster recovery strategy in us-west-2 where application servers are kept shut down and database backups are restored from Amazon S3 on-demand during a failover to minimize running costs.