A retail company is launching a new hybrid Point-of-Sale (POS) backend platform on AWS. The cloud architecture consists of a primary API VPC (`vpc-api-prod` with CIDR block ) in the `us-west-2` Region, which communicates with on-premises inventory systems via a AWS Direct Connect connection. The company has also deployed a partner integration VPC (`vpc-partner` with CIDR block ) in the same region.
The platform must satisfy the following design requirements:
1. Production API instances in `vpc-api-prod` are distributed across two Availability Zones (`us-west-2a` and `us-west-2b`). They must have highly available, resilient outbound internet access to perform third-party payment processor API calls.
2. Partner integration services in `vpc-partner` must securely connect to the API servers in `vpc-api-prod` but must be strictly prevented from accessing any on-premises networks.
3. Private DNS resolution for the internal domain `api.internal` must be resolvable from both `vpc-api-prod` and `vpc-partner`.
Which TWO network architecture decisions should a solutions architect recommend to satisfy these requirements?
- Deploy a NAT Gateway in the public subnet of each Availability Zone in `vpc-api-prod`. Configure the route tables of the private subnets in each Availability Zone to route traffic through the NAT Gateway in the same Availability Zone.Answer
- BDeploy a single NAT Gateway in the public subnet of the `us-west-2a` Availability Zone in `vpc-api-prod`. Configure the private subnet route tables in both `us-west-2a` and `us-west-2b` to route all traffic through this single NAT Gateway.
- Associate the Route 53 Private Hosted Zone `api.internal` directly with both `vpc-api-prod` and `vpc-partner` in the Route 53 service configuration.Answer
- DDeploy Route 53 Resolver inbound endpoints in `vpc-api-prod` and outbound endpoints in `vpc-partner`, then configure a forwarding rule in `vpc-partner` to route queries for `api.internal` to the inbound endpoints.
- EConnect `vpc-api-prod` and `vpc-partner` to an AWS Transit Gateway, attach the Direct Connect Gateway to the Transit Gateway, and configure a single Transit Gateway route table with automatic route propagation enabled for all attachments.