ZeroVault Overview
ZeroVault stores secrets for your applications and serves them to your Workers at
deploy and runtime. You read and write them from the dashboard, the API, or the
zv CLI.
Object model
Section titled “Object model”Organization└── Project └── Environment (development and production by default) └── Secret (key / value)- Your organization is your workspace. It is created for you when you sign up, and it owns everything below. You do not create one by hand.
- A project groups the secrets for one app or service. Creating a project
automatically gives it two environments,
developmentandproduction. You can add or delete more. - An environment holds a flat set of key/value secrets.
- API keys are organization-scoped. One key reaches every project and environment in your organization, and the same key also authorizes ZeroErrors.
Where things live
Section titled “Where things live”- Dashboard: dash.zeroapps.dev/vault: projects, environments, secrets, and API keys.
- Public API:
https://api.zeroapps.dev/vault/v1, Bearer-authenticated with azv_…key. - CLI:
zv, published aszerovault-clion npm.
- Getting started: the dashboard walkthrough.
- CLI: install
zvand script your secrets. - Cloudflare Workers: pull secrets into a Worker deploy.