Now in public Preview

Ubiquex; Everywhere!

An Open-Source Platform Engineering Orchestrator with GitOps, AI, and Pulumi at its core

5,200+ resources No Terraform BSL Pulumi-powered AI plan summaries Zero glue code Apache 2.0
platform.iac
# Pull a managed RDS component from the registry
component "database" {
  source  = "registry.ubiquex.io/rds-postgres"
  version = "1.4.0"
  engine  = "postgres"
  env     = "production"
}

# Wire output natively into ArgoCD with ~
sync "argocd" "backend" {
  repo   = "github.com/myorg/app-config"
  path   = "apps/backend"
  target = "https://kubernetes.default.svc"
  values = {
    db_host = ~component.platform.endpoint
    db_name = ~component.platform.db_name
  }
}