You built a complete fleet from the ground up: you imported real Terraform state as entities, gave them proper entity types, grouped your clusters into a cell that decides placement, connected tenants to clusters with the runs_on relationship, and wired an OnboardTenant Action that opens a pull request your CI applies. That's the whole cattle loop — see it, place into it, connect it, grow it — running on your machine, with Terraform still in charge of every apply.
Here's where to go from here, depending on what you want next.
The Quick Start — Advanced tutorial walks a multi-stack greenfield scenario: model several cells, fire an OnboardTenant cascade that opens PRs across dependent stacks, and let your CI apply them in dependency order. It's the same primitives you just learned, scaled up to a realistic onboarding cascade. If your real fleet has tenants whose infrastructure spans more than one stack, start there.
If you came in through the five-minute on-ramp and want to revisit the fast path, the Quick Start — Simple page is the canonical import → dashboard flow.
You can build a fleet; the Best Practices section is about building one that stays healthy as it grows:
dependsOn ordering that tears down cleanly every time.When you need the precise field name, flag, or function — not the narrative — the Reference is the lookup surface:
{{ ... }} function you can use in parameters, properties, and triggers.import terraform, apply, secrets, and dashboard.The Troubleshoot section covers the failure modes you're most likely to hit: import / ingest issues, Action / PR debugging, and drift & state issues.
The canonical demos in examples/ ship complete, runnable blueprints for each substrate — the same model you just built, in full:
bare-tf-gh-actions-onefile-per-tenant — bare Terraform + GitHub Actions (pull-request trigger), the shape this tutorial mirrored.cattle-saas-tenants — Terraform Cloud (terraform-cloud trigger).cattle-saas-tenants-atmos — Atmos (atmos-workflow trigger).cattle-saas-tenants-atlantis — Atlantis (atlantis trigger).Browse them in the Examples gallery, pick the one closest to how you run Terraform, and adapt its blueprint to your real fleet.
Prev: ← Step 4 — Wire an Action · Back to: Your First Fleet (overview)