Subchapter 88.3
references/creating-a-transit-gateway-and-attaching-vpcs.mdMarkdown14 KBView on GitHub
Domain expertise for building a Regional transit gateway hub and connecting VPCs to it, so many VPCs reach each other through one router instead of a peering mesh. Covers the default route table behavior that decides whether the hub starts open or segmented, the one-subnet-per-Availability-Zone rule, the dedicated attachment subnet best practice, the overlapping-CIDR check, and the VPC-side routes that attaching alone does not create.
Does not cover route table segmentation in depth (a separate reference), centralized egress or inspection, hybrid connectivity, peering, or multicast. Those are separate references.
Execute commands using the AWS MCP server when connected (sandboxed execution, audit logging, observability). Fall back to the AWS CLI otherwise. A transit gateway is Regional; run every command in the Region that holds the hub.
To build the hub and attach VPCs end to end, follow the procedure exactly. See the Procedure section below. It covers deciding segmentation intent before creation, creating the transit gateway with the right default-route-table settings, creating one VPC attachment per VPC with a dedicated subnet in every Availability Zone that holds workloads, checking for overlapping CIDRs, adding the VPC-side routes, and surfacing the console link to verify.
When a transit gateway is created, “Default route table association” and “Default route table propagation” are both on by default. Every new attachment then associates with and propagates into the one default route table, so all VPCs can reach all VPCs: an open mesh.
| Customer intent | Default settings |
|---|---|
| All VPCs should reach each other (flat network) | Leave both defaults on |
| Some VPCs must stay isolated (segmentation now or later) | Disable both defaults at creation, then build route tables per the segmenting reference |
Constraints:
A transit gateway routes traffic in an Availability Zone only where its VPC attachment has a subnet in that zone. An attachment that lists subnets in only some zones leaves instances in the other zones unable to reach anything across the hub.
Constraints:
Putting the transit gateway network interfaces in the same subnet as EC2 instances makes one subnet route table serve both the attachment and the workloads, where entries can conflict. A dedicated small subnet avoids it.
Constraints:
A transit gateway does not route between overlapping CIDRs and will not propagate a new CIDR when an identical route already exists. Attaching a VPC that overlaps an attached one fails silently: no error, just missing routes.
Constraints:
Creating the attachment connects the VPC to the transit gateway but does not add the routes that send traffic to it. Each VPC subnet route table still needs an entry pointing the other VPCs’ ranges at the transit gateway.
Constraints:
A transit gateway becomes the central routing point for every VPC attached to it, so a misconfiguration here has blast radius across every attached network, and an overlapping-CIDR attachment fails silently rather than loudly. The controls are embedded in the procedure; this section consolidates them.
Constraints:
aws:SourceArn, aws:SourceAccount, kms:ViaService) so only the specific
log group, bucket, or trail in the expected account and service can use the keyThe attachment has no subnet in that zone. Add an attachment subnet for every zone with workloads.
The VPC’s CIDR overlaps an already-attached VPC. Check all attachments for overlap; re-address one.
The VPC subnet route tables have no route to the transit gateway. Add the VPC-side routes.
Default route table association and propagation were left on. Disable them and segment per the segmenting reference.
This procedure decides segmentation intent, creates the transit gateway with the matching default settings, attaches each VPC with a dedicated subnet per Availability Zone after checking for CIDR overlap, adds the VPC-side routes, and surfaces the console link to verify.
yes or no).Constraints for parameter acquisition:
Constraints:
You MUST confirm credentials with aws sts get-caller-identity, and you MUST use short-lived,
ephemeral credentials scoped to least privilege for transit gateway administration, never
long-lived access keys or broad service wildcard or FullAccess policies
You MUST list the CIDR of every VPC to attach and check for overlap before creating anything:
aws ec2 describe-vpcs --vpc-ids {vpc_ids} --region {region}You MUST enable VPC Flow Logs on the attached VPC subnets (the VPCs already exist) for traffic visibility, audit, and incident response. These logs carry sensitive traffic data, so you MUST enable encryption at rest on the destination (a KMS key on the CloudWatch log group, or SSE-KMS on the S3 bucket). Transit Gateway Flow Logs are enabled in Step 2, once the hub exists
You SHOULD enable AWS CloudTrail to record transit gateway attachment, route table, association, and propagation changes for audit and unauthorized-change detection, and you MUST enable encryption at rest on the CloudTrail destination (a KMS key)
You MUST, when a KMS key encrypts a flow log destination (CloudWatch log group or S3 bucket) or the
CloudTrail destination, scope the KMS key policy with condition keys (aws:SourceArn,
aws:SourceAccount, and kms:ViaService) so only the specific log group, bucket, or trail in the
expected account and service can use the key, preventing cross-account or cross-service misuse
You SHOULD create CloudWatch alarms for transit gateway attachment creation and deletion, route table changes, and failed or blocked attachment states, so that unexpected or unauthorized changes and failure conditions are surfaced for investigation rather than discovered after impact
Constraints:
You MUST disable the defaults when segmentation is intended:
aws ec2 create-transit-gateway --description "{description}" \
--options DefaultRouteTableAssociation=disable,DefaultRouteTablePropagation=disable \
--region {region}You MUST leave the defaults enabled only when the customer wants a flat network
You MUST capture the TransitGatewayId and poll until it reports available:
aws ec2 describe-transit-gateways \
--transit-gateway-ids {transit_gateway_id} --region {region}You MUST enable Transit Gateway Flow Logs on the hub once it exists, for traffic visibility and audit across every attached network. These logs carry sensitive traffic data, so you MUST enable encryption at rest on the destination (a KMS key on the CloudWatch log group, or SSE-KMS on the S3 bucket)
Constraints:
You MUST create the attachment with a subnet in every Availability Zone that holds workloads, using dedicated subnets:
aws ec2 create-transit-gateway-vpc-attachment \
--transit-gateway-id {transit_gateway_id} --vpc-id {vpc_id} \
--subnet-ids {attachment_subnets} --region {region}You MUST capture each TransitGatewayAttachmentId and poll until it reaches available:
aws ec2 describe-transit-gateway-vpc-attachments \
--transit-gateway-attachment-ids {attachment_id} --region {region}Constraints:
You MUST discover all route tables for each VPC:
aws ec2 describe-route-tables \
--filters Name=vpc-id,Values={vpc_id} \
--query 'RouteTables[*].RouteTableId' --output json --region {region}Capture all route table IDs. You MUST add a route to the transit gateway in each returned route table.
You MUST add a route to the transit gateway in each VPC route table for the other VPCs’ ranges:
aws ec2 create-route --route-table-id {vpc_route_table_id} \
--destination-cidr-block {other_vpc_cidr} \
--transit-gateway-id {transit_gateway_id} --region {region}Constraints:
You MUST confirm the attachments are available:
aws ec2 describe-transit-gateway-attachments \
--filters Name=transit-gateway-id,Values={transit_gateway_id} --region {region}You MUST present the transit gateway console link, filling {transit_gateway_id} and {region}
from the API response, and tell the customer to open it and confirm the attachments:
https://{region}.console.aws.amazon.com/vpc/home?region={region}#TransitGatewayDetails:transitGatewayId={transit_gateway_id}Note: If defaults were disabled at creation (segmentation intended), you MUST refer the customer to the segmenting-traffic-with-route-tables reference to complete their route table design.
{
"region": "us-east-1",
"segmentation_intent": "yes",
"vpc_ids": ["vpc-team1", "vpc-team2", "vpc-shared"],
"attachment_subnets": {
"vpc-team1": ["subnet-team1-1a", "subnet-team1-1b"],
"vpc-team2": ["subnet-team2-1a", "subnet-team2-1b"],
"vpc-shared": ["subnet-shared-1a", "subnet-shared-1b"]
}
}Checked CIDRs: no overlap.
Created transit gateway tgw-0abc with default association and propagation disabled (segmentation planned).
Attached vpc-team1, vpc-team2, vpc-shared, each with a dedicated /28 subnet in us-east-1a and us-east-1b.
Added VPC-side routes to the transit gateway in each VPC's subnet route tables.
Open the transit gateway console and confirm the attachments:
https://us-east-1.console.aws.amazon.com/vpc/home?region=us-east-1#TransitGatewayDetails:transitGatewayId=tgw-0abc
Next, build route tables per the segmenting reference to enforce isolation.The attachment lacks a subnet in that zone. Recreate or modify the attachment to include it (Step 3).
A CIDR overlaps an attached VPC. Re-check overlap and re-address before retrying (Step 1).
VPC-side routes are missing. Add the routes to the transit gateway (Step 4).