Vault Docker lab is a minimal 5-node Vault cluster running the official Vault container image with Integrated Storage on Docker. Vault Docker lab uses a Makefile
, Terraform CLI, and the Terraform Docker Provider to build the cluster.
You can use Vault Docker lab to build a small containerized cluster with Integrated Storage for development, education, or testing. You should not use Vault Docker lab for production use cases.
Vault Docker lab also includes a telemetry stack consisting of Prometheus and Grafana containers. Run the project, access Grafana, paste in the official dashboard, and go.
One more thing: want to get your dashboard popping? A benchmark container is also included.
Check the corresponding sections here for more details.
You can run your own Vault Docker lab with Docker, Terraform, and the Terraform Docker provider.
Your host computer must have the following software installed to run Vault Docker lab:
-
Docker (tested with Docker Desktop version 4.32.0 on macOS version 14.5)
-
Terraform CLI binary installed in your system PATH (tested with version 1.9.3 darwin_arm64 on macOS version 14.5)
- Vault CLI binary installed in your system PATH if you want to use CLI commands
NOTE: Vault Docker lab functions on Linux (last tested on Ubuntu 22.04) and macOS with Intel or Apple silicon processors (last tested on macOS 14.5).
Follow these steps to run your own Vault Docker lab.
-
Clone this repository.
git clone https://github.com/hashicorp-education/learn-vault-docker-lab.git
-
Change into the lab directory.
cd learn-vault-docker-lab
-
Add the Vault Docker lab Certificate Authority certificate to your operating system trust store.
-
For macOS:
sudo security add-trusted-cert -d -r trustAsRoot \ -k /Library/Keychains/System.keychain \ ./containers/Vault Docker lab_node_1/certs/vault_docker_lab_ca.pem
NOTE: The OS prompts for your user password, and sometimes prompts twice; enter your user password as needed to add the certificate.
-
For Linux:
-
Alpine
Update the package cache and install the
ca-certificates
package.sudo apk update && sudo apk add ca-certificates fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/aarch64/APKINDEX.tar.gz fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/aarch64/APKINDEX.tar.gz v3.14.8-86-g0df2022316 [https://dl-cdn.alpinelinux.org/alpine/v3.14/main] v3.14.8-86-g0df2022316 [https://dl-cdn.alpinelinux.org/alpine/v3.14/community] OK: 14832 distinct packages available OK: 9 MiB in 19 packages
From within this repository directory, copy the Vault Docker lab CA certificate to the
/usr/local/share/ca-certificates
directory.sudo cp ./containers/Vault Docker lab_node_1/certs/vault_docker_lab_ca.pem \ /usr/local/share/ca-certificates/vault_docker_lab_ca.crt # No output expected
Append the certificates to the file
/etc/ssl/certs/ca-certificates.crt
.sudo sh -c "cat /usr/local/share/ca-certificates/vault_docker_lab_ca.crt >> /etc/ssl/certs/ca-certificates.crt" # No output expected
Update certificates.
sudo sudo update-ca-certificates # No output expected
-
Debian & Ubuntu
Install the
ca-certificates
package.sudo apt-get install -y ca-certificates Reading package lists... Done ...snip... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done.
Copy the Vault Docker lab CA certificate to
/usr/local/share/ca-certificates
.sudo cp containers/Vault Docker lab_node_1/certs/vault_docker_lab_ca.pem \ /usr/local/share/ca-certificates/vault_docker_lab_ca.crt # No output expected
Update certificates.
sudo update-ca-certificates Updating certificates in /etc/ssl/certs... 1 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done.
-
RHEL
From within this repository directory, copy the Vault Docker lab CA certificate to the
/etc/pki/ca-trust/source/anchors
directory.sudo cp ./containers/Vault Docker lab_node_1/certs/vault_docker_lab_ca.pem \ /etc/pki/ca-trust/source/anchors/vault_docker_lab_ca.crt # No output expected
Update CA trust.
sudo update-ca-trust # No output expected
From within this repository directory, copy the Vault Docker lab CA certificate to the
/usr/local/share/ca-certificates
directory.sudo cp ./containers/Vault Docker lab_node_1/certs/vault_docker_lab_ca.pem \ /usr/local/share/ca-certificates/vault_docker_lab_ca.crt # No output expected
Update certificates.
sudo update-ca-certificates # No output expected
-
-
-
Type
make
and press[return]
; output resembles this example, and includes the initial root token value for the sake of convenience and ease of use.π Hello from Vault Docker Lab [+] Initializing Terraform workspace ...done. [+] Applying Terraform configuration ...done. [+] Check Vault active node status ...ok. [+] Check Vault initialization status ...ok. [+] Unsealing cluster nodes .....node 2. node 3. node 4. node 5. done. [+] Enable audit device on Vault Docker lab_node_1 in /vault/logs/vault_audit.log done. [i] Export VAULT_ADDR for the active node: export VAULT_ADDR=https://127.0.0.1:8200 [i] Login to Vault with initial root token: vault login hvs.rCKq3...c0ff33...HUxxvo7
-
Follow the instructions to set an appropriate
VAULT_ADDR
environment variable, and login to Vault with the initial root token value if you are using CLI. You can use the initial root token value for API requests or to login to the web UI.
The configuration, data, and audit device log files live in a subdirectory named after the server under containers
. For example, here is the structure of the first server, Vault Docker lab_node_1 as it appears when active.
tree containers/Vault Docker lab_node_1
Example output:
containers/Vault Docker lab_node_1
βββ certs
βΒ Β βββ server_cert.pem
βΒ Β βββ server_key.pem
βΒ Β βββ vault_docker_lab_ca.pem
βΒ Β βββ vault_docker_lab_ca_chain.pem
βββ config
βΒ Β βββ server.hcl
βββ data
βΒ Β βββ raft
βΒ Β βΒ Β βββ raft.db
βΒ Β βΒ Β βββ snapshots
βΒ Β βββ vault.db
βββ logs
7 directories, 7 files
Note: If you need access to the unseal key, you can find it along with the initial root token value in the
.Vault Docker lab_node_1_init
file.
Vault Docker lab offers the latest available Vault Docker image version, but you can also run a specific version of Vault for which an image exists with the TF_VAR_vault_version
environment variable:
TF_VAR_vault_version=1.11.0 make
Tip: You should use Vault versions >= 1.11.0 for ideal Integrated Storage support.
Vault Docker lab runs the Vault community edition by default, but you can also run the Enterprise edition.
NOTE: You must have an Enterprise license to run the Vault Enterprise image.
Export the TF_VAR_vault_license
environment variable with your Vault Enterprise license string as the value. For example:
export TF_VAR_vault_license=02E2VCBORGUIRSVJVCECNSNI...
Export the TF_VAR_vault_edition
environment variable to specify vault-enterprise
as the value.
export TF_VAR_vault_edition=vault-enterprise
Make Vault Docker lab.
make
The default Vault server log level is Info, but you can specify another log level like Debug
, with the TF_VAR_vault_log_level
environment variable like this:
TF_VAR_vault_log_level=Debug make
By default, Vault Docker lab automatically initializes and unseals Vault. If you'd rather perform these steps yourself, you can specify that they're skipped.
Stage a cluster:
make stage
Example output:
[Vault Docker lab] Initializing Terraform workspace ...Done.
[Vault Docker lab] Applying Terraform configuration ...Done.
[Vault Docker lab] Export VAULT_ADDR for the active node: export VAULT_ADDR=https://127.0.0.1:8200
[Vault Docker lab] Vault is not initialized or unsealed. You must initialize and unseal Vault prior to use.
After establishing the Vault Docker Lab, you can enable a telemetry gathering stack consisting of Prometheus and Grafana containers with this command instead of just make
:
make telemetry
Example output:
π Hello from Vault Docker Lab
[+] Initializing Terraform workspace ...done.
[+] Applying Terraform configuration ...done.
[+] Check Vault active node status ...ok.
[+] Check Vault initialization status ...ok.
[+] Unsealing cluster nodes .....node 2. node 3. node 4. node 5. done.
[+] Enable audit device on vdl_node_1 in /vault/logs/vault_audit.log done.
[+] [Prometheus] initializing Terraform workspace ...done.
[+] [Prometheus] Applying Terraform configuration ...done.
[i] [Prometheus] web interface available at http://127.0.0.1:9090
[+] [Grafana] initializing Terraform workspace ...done.
[+] [Grafana] Applying Terraform configuration ...done.
[i] [Grafana] web interface available at http://127.0.0.1:3000
[i] Export VAULT_ADDR for the active node: export VAULT_ADDR=https://127.0.0.1:8200
[i] Login to Vault with initial root token: vault login hvs.rCKq3...c0ff33...HUxxvo7
The screenshot shows a Vault Docker lab that has been up but idle for 25 minutes.
To clean up Docker containers and all generated artifacts, including audit device log files:
make clean
Example output:
π Hello from Vault Docker Lab
[-] Destroying Terraform configuration ...done.
[-] Removing created artifacts ...done.
or, if you enabled the telemetry stack:
make clean-with-telemetry
Example output:
π Hello from Vault Docker Lab
[-] [Grafana] Destroying Terraform configuration ...done.
[-] [Grafana] Removing artifacts created by Vault Docker Lab ...done.
[-] [Prometheus] Destroying Terraform configuration ...done.
[-] [Prometheus] Removing artifacts created by Vault Docker Lab ...done.
[-] Destroying Terraform configuration ...done.
[-] Removing created artifacts ...done.
To clean up everything including Terraform runtime configuration and state:
make cleanest
Example output:
π Hello from Vault Docker Lab
[-] Destroying Terraform configuration ...done.
[-] Removing created artifacts ...done.
[-] Removing all Terraform runtime configuration and state ...done.
To remove the CA certificate from your OS trust store:
-
For macOS:
sudo security delete-certificate -c "vault-docker-lab Intermediate Authority" # no output expected
- The OS prompts you for your user password; enter it to add the certificate.
-
For Linux:
- Follow the documentation for your specific Linux distribution to remove the certificate.
Unset related environment variables.
unset TF_VAR_vault_edition F_VAR_vault_license TF_VAR_vault_version VAULT_ADDR
A great resource for learning more about Vault is the HashiCorp Developer site, which has a nice Vault tutorial library available.
If you are new to Vault, check out the Get Started tutorial series:
The tutorial library also has a wide range of intermediate and advanced tutorials with integrated labs.
The API documentation and product documentation are also great learning resources.