Everything you need to manage secrets securely
Fetch secrets in your deployment pipelines with a single command
# Fetch production secrets and inject into environment
curl -H "Authorization: Bearer your-api-key" \
https://api.octosecret.com/v1/secrets/my-project?env=prod \
| jq -r 'to_entries|map("\(.key)=\(.value|@sh)")|.[]' \
> .env.production
# Or use in your CI/CD
export $(curl -H "Authorization: Bearer $OCTOSECRET_API_KEY" \
https://api.octosecret.com/v1/secrets/my-project?env=prod \
| jq -r 'to_entries|map("\(.key)=\(.value|@sh)")|.[]')
Start free, scale as you grow