You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- README: "Transit Gateway egress" section — what it does, how to enable
(enable_transit_gateway + transit_gateway_id, computed id allowed), the
operator-side TGW prerequisites (RAM share/accept, egress + return routes),
CIDR-uniqueness requirement, IPv6 opt-in, and reversibility.
- VARIABLES: rows for enable_transit_gateway, transit_gateway_id,
transit_gateway_ipv6_egress.
- CHANGELOG: [Unreleased] entry for the feature.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ Optional release notice.
18
18
19
19
## [Unreleased] - YYYY-MM-DD
20
20
21
+
-[Added] Transit Gateway egress mode for new VPCs: set `enable_transit_gateway = true` (+ `transit_gateway_id`) to route private-subnet egress through a Transit Gateway instead of NAT gateways; IPv6 egress is opt-in via `transit_gateway_ipv6_egress`. See [Transit Gateway egress](README.md#transit-gateway-egress) ([#115](https://github.com/quiltdata/iac/pull/115))
22
+
21
23
## [1.7.2] - 2026-06-08
22
24
23
25
-[Fixed] Bump `modules/cnames` AWS provider constraint from `~> 5.0` to `~> 6.0` so it resolves alongside the `vpc` module's `aws >= 6.28` requirement — using `quilt` + `cnames` in one root previously failed `terraform init` ([#117](https://github.com/quiltdata/iac/pull/117))
Copy file name to clipboardExpand all lines: VARIABLES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,9 @@ This document provides comprehensive documentation for all variables available i
26
26
|`user_subnets`|`list(string)`|`null`| ALB subnet IDs (exactly 2 required for internal ALB with existing VPC) |
27
27
|`user_security_group`|`string`|`null`| Security group ID for ALB access (required for existing VPC) |
28
28
|`api_endpoint`|`string`|`null`| VPC endpoint ID for API Gateway (required for internal ALB with existing VPC) |
29
+
|`enable_transit_gateway`|`bool`|`false`| Route private-subnet egress through a Transit Gateway instead of NAT gateways (`create_new_vpc = true` only). Disables NAT + the IPv6 egress-only IGW; requires `transit_gateway_id`. See [Transit Gateway egress](README.md#transit-gateway-egress). |
30
+
|`transit_gateway_id`|`string`|`null`| Transit Gateway to attach to (required when `enable_transit_gateway = true`). May be a value known only after apply (e.g. a TGW created in the same configuration). |
31
+
|`transit_gateway_ipv6_egress`|`bool`|`false`| Also route IPv6 (`::/0`) egress through the TGW. Leave off unless the TGW carries IPv6 egress, otherwise IPv6 traffic would be black-holed. |
0 commit comments