An enterprise is designing a multi-account AWS environment in the `us-east-1` Region. The architecture requires connecting a production workload VPC (`vpc-secure-compute`) in Account 1 with a shared services VPC (`vpc-shared-services`) in Account 2, and a centralized egress security VPC (`vpc-egress-security`) in Account 3.
The networking requirements are as follows:
- Workloads in `vpc-secure-compute` are deployed across two Availability Zones (`us-east-1a` and `us-east-1b`).
- Workloads in `vpc-secure-compute` must access a Private Hosted Zone (PHZ) named `internal.services` hosted in Account 2.
- All outbound internet traffic from `vpc-secure-compute` must be routed through `vpc-egress-security`, where it is inspected by stateful virtual firewall appliances behind an AWS Gateway Load Balancer (GWLB).
- Traffic from `vpc-secure-compute` to `vpc-shared-services` must bypass the firewall appliances and route directly.
- The network must be highly available and resilient to Availability Zone failures, with no risk of asymmetric routing or single points of failure.
- A Transit Gateway (`tgw-central`) in Account 4 is shared with all accounts.
Which TWO actions should the solutions architect perform to meet these requirements?
- In Account 2, submit an association authorization for the `internal.services` private hosted zone to `vpc-secure-compute` using the AWS CLI or SDK. In Account 1, associate `vpc-secure-compute` with the private hosted zone.Answer
- Enable Appliance Mode on the Transit Gateway VPC attachment for `vpc-egress-security` using the AWS CLI or Console to ensure that bidirectional stateful traffic is consistently routed through the same Availability Zone.Answer
- CIn the route tables of `vpc-secure-compute`, direct all outbound internet traffic () to a single NAT Gateway deployed in the `us-east-1a` subnet of `vpc-egress-security` to minimize data processing costs.
- DAssociate all VPC attachments with a single default Transit Gateway route table, and add static routes directing to the `vpc-egress-security` attachment and `vpc-shared-services` CIDR to the `vpc-shared-services` attachment.
- EIn Account 2, create a Route 53 Resolver outbound endpoint in `vpc-shared-services`. In Account 1, create an inbound endpoint in `vpc-secure-compute`. Create a resolver rule in Account 1 to forward queries for `internal.services` to the inbound endpoint.