Infrastructure Provisioning. Forged in Code.
The boto3-native engine that replaces Terraform DSL with pure SDK-direct provisioning. Atomic, dependency-ordered, and drift-aware.
# Found 4 resources to modify
[CREATE] aws_ec2.Vpc(name="prod-vpc-main")
+ cidr_block: "10.0.0.0/16"
+ enable_dns_hostnames: True
[UPDATE] aws_ec2.SecurityGroup(id="sg-04a2...")
- description: "legacy-access"
+ description: "foundry-managed-ingress"
~ tags: { "ManagedBy": "Foundry" }
[DESTROY] aws_ec2.Instance(id="i-99023x...")
Reason: Immutable replacement required by change in 'InstanceType'
Plan Summary: 1 to add, 1 to change, 1 to destroy.
Waiting for approval...
Core Engine Architecture
SDK-Direct (Boto3)
No provider plugins or intermediate DSLs. Foundry communicates directly with AWS APIs using type-safe SDK patterns.
Topological Ordering
Intelligent graph resolution ensures resources are provisioned in the exact order required by cloud dependencies.
Typed Diffs
Semantic drift detection understands if an attribute change triggers a destructive replacement or a safe update.
Atomic Lifecycle
All operations are transaction-scoped. Failures trigger automatic state rollbacks to maintain infrastructure consistency.
Type-Safe Infrastructure as Code.
Foundry doesn't guess. It uses the actual AWS SDK models to validate your infrastructure before a single byte is sent to the API.
State Verification
Foundry polls live API endpoints to verify local state integrity before calculating any changes.
Dependency Injection
Native Python/TypeScript types allow for seamless passing of ARNs and IDs between resources without HCL workarounds.
from foundry import InfrastructureStack from foundry.aws import ec2 # Pure SDK-Direct Definition class NetworkStack(InfrastructureStack): def construct(self): self.vpc = ec2.Vpc( name="foundry-core", cidr_block="10.0.0.0/16", enable_dns_hostnames=True ) self.subnet = ec2.Subnet( vpc_id=self.vpc.id, # Native Reference cidr_block="10.0.1.0/24", az="us-east-1a" ) # Foundry calculates topological ordering # and executes atomic API calls.
Forge your next cluster.
Be the first to access the Foundry Provisioning Engine. Limited beta slots opening weekly for infrastructure teams.
AWS Advanced Technology Partner