https://github.com/tam7t/do-terraform-vault
A simple terraform setup for bootstrapping a vault cluster on DigitalOcean.
https://github.com/tam7t/do-terraform-vault
digitalocean terraform vault
Last synced: 2 months ago
JSON representation
A simple terraform setup for bootstrapping a vault cluster on DigitalOcean.
- Host: GitHub
- URL: https://github.com/tam7t/do-terraform-vault
- Owner: tam7t
- License: mit
- Created: 2015-12-07T16:29:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-20T23:18:36.000Z (over 8 years ago)
- Last Synced: 2025-01-30T23:41:21.379Z (4 months ago)
- Topics: digitalocean, terraform, vault
- Language: Smarty
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# do-terraform-vault
A [terraform](https://www.terraform.io/) script for setting up [vault](https://vaultproject.io/) on DigitalOcean.# About
This script creates a block storage device to hold the vault data and runs the
official vault docker image on a CoreOS droplet.# Usage
# terraform
* Supply all necessary variables to a `.tfvars` file
* `terraform get`
* `terraform plan -var-file=vault.tfvars`
* `terraform apply -var-file=vault.tfvars`
* `terraform destroy -var-file=vault.tfvars`## vault
* `VAULT_ADDR=http://:8200 vault init`From here, read the [vault docs](https://vaultproject.io/docs/index.html)