An enterprise is designing a secure, multi-VPC platform in the `us-west-2` Region. The architecture includes `vpc-app-prod` for private containerized workloads across two Availability Zones (`us-west-2a` and `us-west-2b`), and `vpc-shared-egress` for centralized internet egress inspection via AWS Network Firewall and NAT Gateways. An AWS Transit Gateway (`tgw-us-west-2`) interconnects the VPCs. In a separate AWS account, `vpc-mgmt-shared` hosts a Route 53 Private Hosted Zone (PHZ) named `corp.internal`.
The design must meet the following requirements:
- Outbound internet traffic from `vpc-app-prod` must be inspected by AWS Network Firewall in `vpc-shared-egress`.
- High availability must be maintained across Availability Zones for internet egress.
- Asymmetric routing through the stateful Network Firewall must be avoided.
- Workloads in `vpc-app-prod` must resolve names in `corp.internal` with minimum latency and without routing DNS traffic over the hybrid connection.
Which architecture satisfies these requirements?
- ADeploy redundant NAT Gateways and AWS Network Firewall endpoints in `vpc-shared-egress`. Attach `vpc-app-prod` and `vpc-shared-egress` to a Direct Connect Gateway (dxgw-global) instead of Transit Gateway, and configure routing tables to send outbound internet traffic from `vpc-app-prod` transitively through dxgw-global to `vpc-shared-egress`. Associate the corp.internal Private Hosted Zone with `vpc-app-prod`.
- BDeploy a single NAT Gateway in `us-west-2a` and AWS Network Firewall endpoints in both Availability Zones in `vpc-shared-egress` to reduce costs. Route outbound traffic from `vpc-app-prod` via `tgw-us-west-2` to `vpc-shared-egress` without enabling Appliance Mode. Associate the corp.internal Private Hosted Zone with `vpc-app-prod`.
- Deploy a NAT Gateway and an AWS Network Firewall endpoint in both `us-west-2a` and `us-west-2b` in `vpc-shared-egress`. Route outbound traffic from `vpc-app-prod` via `tgw-us-west-2` to `vpc-shared-egress`. Enable Appliance Mode on the Transit Gateway VPC attachment for `vpc-shared-egress` to ensure symmetric routing. Associate the corp.internal Private Hosted Zone with `vpc-app-prod`.Cevap
- DDeploy redundant NAT Gateways and AWS Network Firewall endpoints in both Availability Zones in `vpc-shared-egress`. Route outbound traffic from `vpc-app-prod` via `tgw-us-west-2` to `vpc-shared-egress` with Appliance Mode enabled. Establish a virtual private gateway in `vpc-app-prod` and route all internal DNS queries for corp.internal to the on-premises DNS servers, which will resolve them using a Route 53 Resolver inbound endpoint in `vpc-mgmt-shared`.