Quantex Analytics is modernizing its on-premises portfolio risk simulation engine by migrating to AWS. The current application runs on VMware virtual machines and suffers from scaling limitations during peak market hours. The modernized workload will be deployed as containerized tasks using Amazon ECS on Amazon EC2 instances across multiple Availability Zones to ensure high availability. The application consists of microservices that require low-latency communication and must be tuned with specific kernel parameters (such as net.core.somaxconn) at the container level. The container images must be securely pulled from a centralized Amazon ECR repository in a shared services AWS account. Security policies dictate that all image traffic must remain entirely within the private network without traversing the public internet, and the overall system design must maintain a Recovery Time Objective (RTO) of under 10 minutes and eliminate single points of network failure. Which combination of actions should the solutions architect take to meet these requirements? (Select TWO.)
- Configure the Amazon ECS task definition to use the awsvpc network mode, and specify the required sysctls parameters in the container definitions.Cevap
- In the production VPC, create Interface VPC endpoints for Amazon ECR (com.amazonaws.region.ecr.api and com.amazonaws.region.ecr.dkr) and a Gateway VPC endpoint for Amazon S3. Configure the repository policy of the Amazon ECR registry in the shared services account to allow pull permissions for the ECS task execution role in the production account.Cevap
- CConfigure the Amazon ECS task definition to use the host network mode, and specify the required sysctls parameters in the container definitions.
- DConfigure the Amazon ECR repository in the shared services account to use the AWS-managed KMS key for ECR (aws/ecr) for encryption, and add the production account's ECS task execution role to the key policy of the AWS-managed key.
- EIn the production VPC, deploy a single NAT Gateway in a public subnet, and configure the private subnet route tables to direct all outbound ECR traffic through the NAT Gateway using public Amazon ECR endpoints.