A multinational financial services company is designing the database and storage strategy for a new critical payment clearing platform. The platform has the following workloads and requirements:
- A highly transactional OLTP ledger that requires a multi-AZ deployment in the primary region, horizontal scaling of read capacity during peak hours, and a cross-region disaster recovery (DR) site in a secondary region with an RPO of less than 1 second and RTO under 1 minute.
- A massive archive of regulatory audit reports stored as object storage. These objects must be encrypted at rest. The reports must be accessible by an auditing application running in an external AWS account owned by a third-party regulator. The regulator requires full control over the rotation of the encryption keys and who has access to the key policies.
Which two of the following database and storage configurations will meet these requirements? (Select TWO.)
- Deploy Amazon Aurora PostgreSQL Global Database with the primary cluster in the primary region and a secondary cluster in the secondary region. Use Aurora Auto Scaling to dynamically adjust the number of Aurora Replicas in the primary region.Answer
- Store the regulatory audit reports in an Amazon S3 bucket. Encrypt the bucket using a Customer Managed Key (CMK) in AWS KMS, and update the KMS key policy to grant decrypt permissions to the external auditing account's IAM role.Answer
- CDeploy Amazon RDS for PostgreSQL with a Multi-AZ deployment across three Availability Zones. Configure the standby instances to serve read traffic and apply Auto Scaling to the standby instances to handle read spikes.
- DConfigure daily database snapshot replication to the secondary region. In the event of a disaster, restore the database from the replicated snapshot in the secondary region using a Pilot Light strategy.
- EStore the regulatory audit reports in an Amazon S3 bucket. Encrypt the bucket using the AWS managed key (aws/s3) for S3, and configure an S3 bucket policy that permits cross-account access to the external regulator's IAM role.