Create a vault
valt0 init <vault> in your terminal to create a new vault.
valt0 init prod makes an empty vault called prod.valt0 in the folder you are in.
The command in full is on the CLI reference.
valt0 init <vault> in your terminal to create a new vault.
valt0 init prod makes an empty vault called prod.valt0 in the folder you are in.
The command in full is on the CLI reference.
valt0 store <vault>:<name> in your terminal to store a secret.
valt0 store prod:STRIPE_KEY puts a secret called STRIPE_KEY into prod.valt0.
The command in full is on the CLI reference.
valt0 list <vault> in your terminal to list the secrets contained in the vault.
valt0 list prod asks for the vault key, then prints the names of the secrets in prod.valt0.
valt0 get.
The command in full is on the CLI reference.
valt0 get <vault>:<name> in your terminal.
valt0 get prod:STRIPE_KEY asks for the vault key, then prints that one value.
The command in full is on the CLI reference.
valt0 store <vault>:<name> --force in your terminal to update an existing secret.
--force flag to write over its value.
The command in full is on the CLI reference.
valt0 rm <vault>:<name> in your terminal to remove a secret from the vault.
valt0 rm prod:STRIPE_KEY asks for the vault key, then takes that secret out of prod.valt0.
The command in full is on the CLI reference.
valt0 info <vault> in your terminal to print the vault’s id.
info never opens the vault.
The command in full is on the CLI reference.
valt0 import.