overrides block lets you reuse existing infrastructure instead.
We recommend deploying Synthetiq into its own AWS sub-account — isolated IAM, quotas, billing, and blast radius — and selectively granting access to services in your internal VPCs from your side, via VPC peering, Transit Gateway, or PrivateLink. You can equally provision into an existing VPC, or supply your own private subnets end to end.
Required: a VPC and three public subnets
- Public subnets in at least 3 Availability Zones, each with an internet-gateway route.
- Room for three /24 workload subnets in the VPC CIDR. Synthetiq auto-allocates them from free space, skipping any range that overlaps an existing subnet, and fails the plan (not the apply) if there isn’t room — or you can pin the CIDRs or supply your own subnets.
Reusing an existing NAT gateway
Choosing your own private subnet CIDRs
generate rather than rolling back the apply. Mutually exclusive with private_subnets below — private_subnet_cidrs has Synthetiq create the subnets, private_subnets deploys into ones you already created.
Deploying into existing private subnets
overrides.nat cannot be combined with this: egress through your subnets is governed by your route tables.
What lands in your subnets:
Your responsibilities when supplying subnets
- Egress — each subnet needs a default route (0.0.0.0/0) to your NAT gateway, Transit Gateway, or egress stack, and it must stay in place after provisioning (removing it later breaks deployments and outbound calls). If you filter egress by destination, allow HTTPS to: ECR and S3 (image pulls at task launch), Secrets Manager (secret injection at container start), CloudWatch Logs (log shipping),
login.synthetiq.com(user sign-in to apps), and any APIs your apps call. - IP capacity — one IP per running task; size for the sum of autoscaling maxima across all services, plus 3 endpoint IPs (≥50 free IPs per subnet recommended). Exhaustion fails gracefully: new launches roll back, running apps are unaffected.
- Subnet shape — three subnets in three distinct AZs, with no internet-gateway default route (tasks launch without public IPs, so an IGW route means no working egress). Non-default NACLs must allow outbound 443, ephemeral return ports, and port 8080 from your public subnets’ CIDRs.

