Skip to content
This repository has been archived by the owner on Nov 26, 2021. It is now read-only.

Latest commit

 

History

History
29 lines (19 loc) · 794 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 794 Bytes

Vault

Quick app to run a vault server in a heroku dyno

Deploy

Setup

brew install vault vault-cli jq

export VAULT_APP=<APP NAME YOU PICKED>
export VAULT_ADDR="https://${VAULT_APP}.herokuapp.com"

vault operator init    #### stash the output of this command in a safe place!
vault operator unseal  # do this step 3x with different keys
vault status

export VAULT_TOKEN=<ROOT TOKEN FROM INIT>
vault write secret/hello value=world
vault read secret/hello

Useful Links