PROVISIONING V2.4.0-BETA

Infrastructure Provisioning. Forged in Code.

The boto3-native engine that replaces Terraform DSL with pure SDK-direct provisioning. Atomic, dependency-ordered, and drift-aware.

dns
storage
cloud_queue
lan
add
lanVPC_PROD
dnsEC2_WEB
storageRDS_MAIN
100%
Visual Editor

Core Engine Architecture

data_object

SDK-Direct (Boto3)

No provider plugins or intermediate DSLs. Foundry communicates directly with AWS APIs using type-safe SDK patterns.

account_tree

Topological Ordering

Intelligent graph resolution ensures resources are provisioned in the exact order required by cloud dependencies.

difference

Typed Diffs

Semantic drift detection understands if an attribute change triggers a destructive replacement or a safe update.

shield

Atomic Lifecycle

All operations are transaction-scoped. Failures trigger automatic state rollbacks to maintain infrastructure consistency.

The Forge Canvasprovisioner/v2/visual.py

Design Visually. Deploy Atomically.

Foundry's Forge Canvas is the primary interface for modern infrastructure. Graphically represent your architecture while the engine maintains a strict, type-safe data model in the background.

gesture

Visual Dependency Mapping

Drag and drop AWS resources. Foundry automatically calculates the topological order and injects required ARNs.

sync_alt

Bi-Directional Sync

Changes in the visual canvas update the source code in real-time, ensuring your documentation is always the truth.

LIVE SOURCE: stack_definition.py
schema_view.json
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.
domain_add

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