Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 866 Bytes

Safe:Vault Cheatsheet.md

File metadata and controls

22 lines (18 loc) · 866 Bytes

Safe/Vault Cheatsheet

#safe #vault #cheatsheet

Helpful Links

GitHub Repositories/Organizations

PR & Communication

Get Information from Safe

From a file… safe get <path> key@filename

Running a local Vault server

safe local --memory --as dev spins up a local Vault that safe automatically targets as dev . This should be run in a different terminal session since it’s blocking.

Sometimes, this command will fail to run because Vault didn’t spin up fast enough. To fix it: 1. Run rm ~/.saferc 2. Then run safe local --memory --as dev again Now it should be working. It’s a race condition we’re trying to fix.