A global pharmaceutical corporation is designing a new cloud-based Manufacturing Execution System (MES) to monitor cleanroom environments and record regulatory batch records. The application will be deployed across two AWS Regions: eu-west-1 (Primary) and us-east-1 (Secondary). The system has a strict Recovery Time Objective (RTO) of 10 minutes and a Recovery Point Objective (RPO) of 1 minute.
The backend database is Amazon Aurora PostgreSQL. The application tier runs on Amazon EC2 instances in an Auto Scaling Group behind an Application Load Balancer (ALB) in each Region. The application instances must query a Private Hosted Zone (PHZ) in a shared services VPC for centralized configuration parameters. The application also requires highly available outbound internet connectivity in each Region to download regulatory compliance templates without being susceptible to a single Availability Zone (AZ) failure.
Which combination of actions should the Solutions Architect take to meet these requirements while minimizing downtime and maximizing fault tolerance? (Select TWO.)
- Deploy an Amazon Aurora Global Database with the primary cluster in eu-west-1 and a secondary cluster in us-east-1. Associate the Private Hosted Zone containing configuration details with the application VPCs in both AWS Regions.Answer
- Deploy a NAT Gateway in each Availability Zone in each Region's VPC, and configure the route tables of the private subnets in each Availability Zone to route outbound internet traffic through the NAT Gateway in their respective zone.Answer
- CTo minimize database replication costs, establish a cross-region replication strategy using daily database snapshots copied to us-east-1, and use AWS Backup to restore the database cluster in the secondary Region during a failover event.
- DDeploy a single NAT Gateway in the first Availability Zone of each Region's VPC, and configure the route tables of the private subnets across all Availability Zones in that Region to route outbound internet traffic through this single NAT Gateway.
- EAssociate the Private Hosted Zone with the shared services VPC in the primary Region, and rely on cross-region VPC peering to automatically resolve the configuration hostnames from the application VPC in the secondary Region.
- FConfigure an Amazon Aurora Auto Scaling policy on the secondary cluster in us-east-1 to dynamically scale read replicas to handle write operations when the primary database cluster in eu-west-1 fails.