diff --git a/README.md b/README.md index 073649a..9b4d53d 100644 --- a/README.md +++ b/README.md @@ -12,15 +12,20 @@ brew install vault vault-cli jq export VAULT_APP= export VAULT_ADDR="https://${VAULT_APP}.herokuapp.com" -vault init #### stash the output of this command in a safe place! -vault unseal # do this step 3x with different keys -vault status +vault operator init -key-shares=1 -key-threshold=1 #### stash the output of this command in a safe place! export VAULT_TOKEN= vault write secret/hello value=world vault read secret/hello ``` +### To automatically unseal set + +`export VAULT_UNSEAL_KEY=` + +Check status + +`vault status` #### Useful Links