A global logistics provider is designing a high-volume, multi-region track-and-trace system. The application consists of an OLTP database for package lifecycle events and an object storage component for proof-of-delivery signature images. The system must run across us-west-2 as the primary region and us-east-1 as the secondary region. The business requires a Recovery Time Objective (RTO) of less than 5 minutes and a Recovery Point Objective (RPO) of less than 10 seconds for all components. The security team mandates encryption at rest using AWS KMS Customer Managed Keys (CMKs). A separate audit account must have direct access to read database logs and S3 bucket access logs for compliance verification.
Which database and storage configurations should a solutions architect recommend to satisfy these requirements? (Select TWO.)
- Deploy an Amazon Aurora Global Database with the primary cluster in us-west-2 and a secondary cluster in us-east-1, using regional KMS Customer Managed Keys for cluster encryption. Configure Aurora Auto Scaling for replicas in the secondary region to handle read traffic spikes.Answer
- Configure an Amazon S3 bucket in us-west-2 with S3 cross-region replication (CRR) to a destination bucket in us-east-1. Encrypt both buckets using regional KMS Customer Managed Keys, and configure a cross-account key policy and bucket policy that grants the auditing account read access to S3 server access logs.Answer
- CDeploy a Multi-AZ Amazon RDS for PostgreSQL instance in us-west-2 with cross-region read replicas in us-east-1. Configure the RDS Multi-AZ standby instance in us-west-2 to serve local read traffic to minimize read latency, and rely on RDS automated cross-region failover to meet the RTO.
- DConfigure Amazon S3 cross-region replication between the two buckets using AWS KMS AWS-managed keys (aws/s3) to simplify key management. Use the default S3 bucket policy to grant cross-account read access to the audit account.
- EDeploy an Amazon Aurora PostgreSQL DB cluster in us-west-2 and configure an AWS Lambda-based scheduled snapshot copy to us-east-1 every hour. In the event of a primary region failure, restore the DB cluster from the copied snapshot in us-east-1.
- FConfigure the Amazon S3 bucket in us-west-2 to write server access logs directly to a bucket in the centralized audit account. Set the destination bucket policy in the audit account to allow write access to cloudtrail.amazonaws.com as the primary service principal while denying all other principals.