AWS INFRASTRUCTURE CONTROL PLANE

Forge infrastructure.
Govern everything.

Foundry provisions AWS with the SDK — no Terraform, no templates — then watches your entire Organization: 194+ accounts, 17 regions, ~130 resource types.

194+
Accounts
17
Regions
~130
Resources
120
Conformance
~100
Checks
~60
MCP Tools
PILLAR 01

Provision with Boto3, not templates.

Author stacks in plain data. Foundry builds the dependency graph and executes via the SDK. Atomic deployments with best-effort rollback and immutable history.

  • check_circlePlan/Apply/Destroy with Typed Diffs
  • check_circleTopological Dependency Ordering
stack_deploying...84%
hub
AWS_ORGANIZATION_ROOT
194 ACCOUNTS
subdirectory_arrow_rightprod-us-east-1 (084321...)
subdirectory_arrow_rightstaging-eu-west-1 (992811...)
subdirectory_arrow_rightMUTATION DETECTED: S3::BucketPolicy
PILLAR 02

Real-time Inventory Fabric.

Every resource, every region. A live CloudTrail pipeline combined with daily org-wide scans keeps your state fresh within seconds of any console mutation.

  • bolt143 Event Patterns Monitored
  • boltZero-latency Resource Tracking

The Autonomous Governance Layer

Ten proprietary subsystems designed to run your cloud at scale, safely and automatically.

auto_fix_high

Autonomous Remediation

Self-applying fixes for non-compliant resources gated by policy.

query_stats

Spend Forecasting

Rightsizing patches based on real-time AWS pricing API data.

forum

Stack Synthesis

Conversational interface for generating valid, governed stacks.

radio

Blast-Radius Sim

Pre-flight simulation that blocks dangerous deployment ripples.

lan

CIDR Authority

Global network allocation map that prevents IP overlaps automatically.

monitoring

Provision-Aware

Monitoring that auto-scales metrics as resources are forged.

auto_mode

Brownfield Autopilot

Seamlessly imports existing AWS resources into Foundry stacks.

history_edu

Provenance Time Machine

Audit every change back to its origin in the infrastructure graph.

account_tree

Least-Privilege Graph

Visualizes and enforces IAM boundaries across the whole organization.

content_copy

Stack Mirror

One-click DR cloning of entire stacks to different regions.

Talk to your infrastructure.

Plain English in. A real, validated plan out. Hallucination foreclosed — every type is gated to the known AWS registry.

person

"Provision a public ALB in front of two EC2 instances in a new VPC with an RDS Postgres backend."

Foundry Bot

Synthesizing stack... Built VPC (10.0.0.0/16) and 4 subnets. Plan ready for review.

bolt
synth_preview.json
{
  "name": "web-tier",
  "resources": [
    {
      "id": "alb-primary",
      "type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
      "properties": { "Scheme": "internet-facing" }
    },
    {
      "id": "db-main",
      "type": "AWS::RDS::DBInstance",
      "properties": { "Engine": "postgres" }
    }
  ]
}
                    
terminalDrive it from Claude Code

~60 MCP tools. Everything Foundry does, available to Claude Code or any MCP client via Streamable HTTP.

$ claude code "plan changes for web-tier using foundry"
> Calling foundry_plan_stack(stack_id="web-tier")...
> Success. 2 resources to add, 0 to destroy.