ncabatoff / vault-experiments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vault-experiments

This repo contains miscellaneous scripts and resources for playing with Vault.

To spin up a single Vault instance with a consul backend:

vagrant up

This will fetch consul and vagrant binaries from Hashicorp. Optionally you can put consul or vault binaries under consul/ or vault/ respectively. This is helpful when building from source, e.g.

make -C ~/go/src/github.com/hashicorp/vault dev && 
  cp ~/go/src/github.com/hashicorp/vault/bin/vault vault/ &&
  vagrant provision --provision-with vault

or on MacOS:

XC_OSARCH=linux/amd64 make -C ~/go/src/github.com/hashicorp/vault dev && 
  cp ~/go/src/github.com/hashicorp/vault/bin/vault vault/ &&
  vagrant provision --provision-with vault

The provisioner scripts ensure that the application is stopped before deploying binaries, and also setup systemd wrappers.

Check the health of the system using

systemctl status consul vault
vault status
consul watch -type=service -service=vault

Or use the web UIs, ports forwarded to http://localhost:18500/ui (consul) and http://localhost:18200/ui (vault)

Unsealing

When you first login:

/vagrant/vault/initunseal

After a reboot or a restart of Vault:

/vagrant/vault/unseal

Dashboards

To enable monitoring, after unsealing your vault:

sudo /vagrant/provision-node_exporter
sudo /vagrant/provision-prometheus
/vagrant/provision-grafana.sh

Then (after a few seconds to a minute for it to come up) you can connect to Grafana to see dashboards, or Prometheus to see the status of metrics collection.

About

License:MIT License


Languages

Language:Shell 89.2%Language:Go 10.4%Language:HCL 0.5%