An enterprise is designing a new cloud infrastructure on AWS. The design consists of a central Shared Services VPC and two spoke VPCs (Spoke-A and Spoke-B) in the `us-east-1` Region, all connected via an AWS Transit Gateway. The application servers in the spoke VPCs must resolve internal domain names registered in a Route 53 Private Hosted Zone (`corp.internal`) that is hosted in the Shared Services AWS account. Additionally, all spoke VPCs must route outbound internet traffic through the Shared Services VPC, which must be highly resilient against an Availability Zone outage.
Which two configurations should a solutions architect implement to satisfy these requirements? (Select TWO.)
- Associate the Route 53 Private Hosted Zone `corp.internal` with both Spoke-A VPC and Spoke-B VPC.Answer
- Deploy a NAT Gateway in each Availability Zone of the Shared Services VPC, and route outbound traffic from each private subnet to its corresponding local NAT Gateway.Answer
- CConfigure a single Direct Connect Gateway to establish transitive routing for internet-bound traffic from the spoke VPCs to the Shared Services VPC.
- DRely on the AWS Transit Gateway to automatically propagate DNS records from the `corp.internal` Private Hosted Zone to all attached spoke VPCs without manual VPC association.
- EDeploy a single NAT Gateway in the Shared Services VPC to reduce cost, and point the default route `0.0.0.0/0` of all subnets across all Availability Zones to this single NAT Gateway.
Answer
Associate the Route 53 Private Hosted Zone with the spoke VPCs, and deploy a NAT Gateway in each Availability Zone of the Shared Services VPC.
To satisfy the requirements, the solutions architect must configure Route 53 Private Hosted Zone associations and highly available NAT Gateways. First, the Private Hosted Zone `corp.internal` must be associated with both spoke VPCs to allow Route 53 to resolve internal domain names within those networks. Second, deploying a NAT Gateway in each Availability Zone of the Shared Services VPC ensures that outbound traffic routes to a local gateway, eliminating cross-AZ dependencies and ensuring high availability during an Availability Zone outage.
Step-by-Step Solution
Key Concept
Multi-VPC DNS resolution with Private Hosted Zones and highly available centralized egress architecture using AWS Transit Gateway and NAT Gateways.
Estimated Time:2m 0s