The Short Version
You’ve got environments. You’ve got clusters. You’ve got teammates who shouldn’t touch production. Project Organization is where those three things connect. No config files. No manual wiring. You tell Monk the rules, and it enforces them.Cluster Assignment
Every environment maps to one cluster. That’s the boundary.Team Secrets
Secrets are environment-scoped. Staging gets its ownDATABASE_URL. Production gets a different one. They don’t leak across boundaries.
- An organization context
- An environment linked to an org cluster
Environment-Scoped RBAC
You can lock down access per environment. A junior dev gets deploy rights to staging. Production stays off-limits. Permissions use path-based scoping:/environments/staging/templates/**— staging templates only/environments/*/secrets/**— secrets across all environments
Putting It Together
A typical setup looks like this:Multiple Environments
Creating, deploying, and managing environment lifecycles.
Access Control & Security
RBAC roles, permissions, and audit logging.

