-
Notifications
You must be signed in to change notification settings - Fork 0
RBAC and Permissions
Amanbig edited this page Jul 20, 2026
·
2 revisions
ManUp's access control has two tiers: your organization role and, underneath it, a project/environment role. The effective role for a given environment is resolved per-request.
Every user has one org-wide role: owner, admin, or viewer.
-
owner/adminare implicitly admins of every project and environment in the org — no separate membership row needed. -
viewerat the org level cannot create projects and cannot manage API keys, regardless of any project/environment membership.
For users who are not org owner/admin, access to a specific environment is resolved as:
- If the user has an environment-level membership row for that environment, its
rolewins. - Otherwise, fall back to the user's project-level membership
rolefor the project the environment belongs to. - If neither exists, the user has no access to that environment (
403).
Role values: admin, member, viewer (default for new project members is member).
| Action | Org viewer
|
Env/project viewer
|
member |
admin (env/project or org owner/admin) |
|---|---|---|---|---|
| Read secrets in an environment | ❌ (no access) | ✅ | ✅ | ✅ |
| Create / update secrets | ❌ | ❌ | ✅ | ✅ |
| Delete secrets | ❌ | ❌ | ❌ | ✅ |
| Create projects | ❌ | n/a | n/a | ✅ (org owner/admin only) |
| Manage project/environment members | ❌ | ❌ | ❌ | ✅ |
| Manage API keys | ❌ | n/a | ✅ | ✅ |
A viewer anywhere in the chain cannot modify secrets — "Viewers cannot modify secrets" is returned as a 403. Only a resolved admin role can delete a secret ("Only admins can delete secrets").
- To give someone read-only access to just one environment (e.g. a CI service account's human counterpart), add them as an environment member with
role: viewerrather than making them an org viewer — orgviewerblocks API key management entirely. - Org
owner/adminbypass all project/environment membership checks — there's no way to scope an org admin down to fewer environments today. If you need that, use separate organizations or project-level API keys instead.