apivault-cli v0.1.1 — Flag Standardization & Custom Encryption
CLISecurity
CLI update standardizing vault key flags to --vault-key for subcommand consistency and adding custom encryption support to keys modification.
#Flag Standardization & Custom Encryption
In apivault-cli v0.1.1, the encryption key flag has been standardized to --vault-key across all subcommands.
ShellShell
# Adding a secret with custom encryption vault key: apivault keys add \ --name "STRIPE_SECRET_KEY" \ --key "sk_live_98374827394827" \ --env production \ --vault-key "my-secure-vault-key" # Injecting secrets directly into child processes: apivault run --vault-key "my-secure-vault-key" -- npm run start
Note
If --vault-key is omitted on an account with custom key derivation enabled, the CLI interactively prompts for your vault key with secure masked input.