Vault Management

Vaults are the primary organizational unit for secrets. Every user gets a Personal vault on first login, and can create additional team vaults for shared access.

Personal Vault

Your personal vault is created automatically when you first visit the Secrets page. It is protected by a password you set during initial setup.

iNote
The vault password is cached in-memory during your session. You will be prompted to enter it again after refreshing the page.

Creating a Team Vault

1
  • Navigate to Secrets → Vault
  • 2
  • Click Create Group in the vault header
  • 3
  • Enter a group name, optional description, and accent color
  • 4
  • Set the vault encryption password
  • 5
  • Share the password securely with team members
  • API: Create Vault

    POST/api/secrets/vaults
    Request body
    json
    {
    "name": "Backend Team",
    "team_id": "team-uuid",
    "is_encrypted": true,
    "password_hash": "sha256-hashed-password"
    }

    Vault Limits

    TierPersonal SecretsTeam VaultsSecrets per Vault
    Free25110
    ProUnlimited10100
    TeamUnlimitedUnlimitedUnlimited

    Managing Groups

    • Reorder — drag secrets within a group to change position
    • Move — drag a secret between groups (re-encrypts automatically)
    • Manage Team — invite or remove members from a team vault
    PreviousQuick StartNextEnvironment Variables