A multinational enterprise is consolidating its cloud infrastructure after acquiring several smaller subsidiaries. The IT team must interconnect 40 separate Virtual Private Clouds (VPCs) across different AWS accounts and also establish a connection to their central headquarters. Additionally, they must implement a mechanism to deny inbound traffic from a list of known malicious IP addresses at the boundary of their subnets. Which combination of AWS solutions will satisfy these requirements with the lowest operational complexity?
- AWS Transit Gateway to interconnect the networks, combined with Network Access Control Lists (Network ACLs) at the subnet levelAnswer
- BAWS Transit Gateway to interconnect the networks, combined with Security Groups at the instance level
- CA mesh of VPC Peering connections to interconnect the networks, combined with Security Groups at the instance level
- DA mesh of VPC Peering connections to interconnect the networks, combined with Network Access Control Lists (Network ACLs) at the subnet level
Answer
The combination of AWS Transit Gateway to interconnect the networks and Network Access Control Lists (Network ACLs) at the subnet level.
The correct answer combines AWS Transit Gateway and Network Access Control Lists. AWS Transit Gateway simplifies the network architecture by acting as a central hub that transitively routes traffic between the 40 VPCs and the corporate headquarters. Network ACLs operate at the subnet boundary and support stateless rule evaluation, allowing administrators to add explicit deny rules for specific malicious IP addresses.
Step-by-Step Solution
Key Concept
AWS Transit Gateway provides simplified hub-and-spoke routing for multi-VPC environments, while Network ACLs allow stateless subnet-level traffic filtering, including explicit deny rules.