Teams & Access Control
Manage who can access your organization and what they can do.
Organizations
An organization is a workspace that groups your projects, applications, and team members. Each organization has its own:
- Projects and applications
- Databases and resources
- Billing subscription (instance plan)
- Team members and roles
- Notification channels
Team Members
Inviting Members
- Go to Organization Settings → Team
- Click Invite Member
- Enter their email address
- Select a role
- Click Send Invite
The invited member receives an email with a link to join your organization.
Roles
| Role | Permissions |
|---|---|
| Owner | Full access. Manage billing, team, and all resources. Cannot be removed. |
| Admin | Manage projects, apps, databases, and team members. Cannot manage billing. |
| Member | View and deploy applications. Cannot create/delete projects or manage team. |
Managing Members
- Change role: Go to Team → click the member → select new role
- Remove member: Go to Team → click Remove next to the member
Authentication
Email & Password
Standard sign-up with email verification. Password requirements:
- Minimum 8 characters
- Mix of letters and numbers recommended
OAuth Providers
Sign in with third-party providers (availability depends on platform configuration):
- GitHub
- GitLab
Two-Factor Authentication (2FA)
Add an extra layer of security with TOTP-based 2FA:
- Go to Account Settings → Security
- Click Enable 2FA
- Scan the QR code with your authenticator app (Google Authenticator, Authy, 1Password, etc.)
- Enter the verification code
- Save your recovery codes in a secure location
caution
Store your recovery codes safely. If you lose access to your authenticator app and don't have recovery codes, you'll need to contact your platform administrator.
API Keys
Generate API keys for programmatic access to your organization's resources.
Creating an API Key
- Go to Organization Settings → API Keys
- Click Create Key
- Enter a description (e.g., "CI/CD Pipeline")
- Select permissions scope
- Click Create
- Copy the key immediately — it won't be shown again
Using API Keys
Include the API key in request headers:
curl -H "Authorization: Bearer your-api-key" \
https://your-kuploy-instance.com/api/...
Managing Keys
- Revoke: Go to API Keys → click Revoke next to the key
- Keys should be rotated periodically for security
- Delete unused keys
Best Practices
- Use least privilege — Assign the minimum role needed for each team member
- Enable 2FA — Especially for admin and owner accounts
- Rotate API keys — Regularly rotate keys used in CI/CD pipelines
- Audit team access — Periodically review who has access and remove inactive members
- Use separate keys per service — Don't share a single API key across multiple systems