Vortex Logistics is modernizing its legacy fleet tracking and dispatch application by migrating it to AWS. The application consists of several microservices that will be deployed on Amazon ECS using the AWS Fargate launch type. The tasks must be distributed across three Availability Zones in private subnets. The microservices must download dynamic compliance lists from the public internet and resolve hostnames for an internal inventory service hosted in a shared-services AWS account via a Route 53 Private Hosted Zone (PHZ) named `inventory.internal`. All Fargate tasks must run in isolated network environments without public IP addresses to comply with strict security policies. Which combination of actions should the Solutions Architect take to meet these requirements? (Select TWO.)
- Configure the ECS task definition to use `awsvpc` network mode. When creating the ECS service, assign the tasks to the private subnets and set the `AssignPublicIp` parameter to `DISABLED` to prevent direct public internet access.Cevap
- Associate the Route 53 Private Hosted Zone `inventory.internal` from the shared-services account with the application VPC, and ensure that both `enableDnsHostnames` and `enableDnsSupport` are set to `true` on the application VPC.Cevap
- CConfigure the ECS task definition to use `bridge` network mode to enable dynamic port mapping and allow the tasks to bind to the host network interface of the Fargate infrastructure.
- DCreate a duplicate Private Hosted Zone `inventory.internal` in the application account and deploy Route 53 Resolver outbound endpoints in the application VPC to forward internal queries to a Resolver inbound endpoint in the shared-services VPC.
- EDeploy a single NAT Gateway in a single public subnet to optimize costs, and configure the route tables of all private subnets across the three Availability Zones to route outbound internet traffic () to this NAT Gateway.