Skip to content

Commit

Permalink
Update for and require Teraform v0.15.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Apr 19, 2021
1 parent a7140e9 commit 3bbf329
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.7.2

- Require Terraform >= 0.15.0
- Update documentation

## 3.7.1

- Update form script
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ _Diagram of a Vaultron cluster with integrated storage (Raft) flavor_

## What?

**Vaultron** uses [Terraform](https://www.terraform.io/) (version 0.12.0+ required) to build a tiny cluster of highly-available [Vault](https://www.vaultproject.io/) servers for development, evaluation, and issue reproduction on [Docker](https://www.docker.com/).
**Vaultron** uses [Terraform](https://www.terraform.io/) (**NOTE: version 0.15.0+ required**) to build a tiny cluster of highly-available [Vault](https://www.vaultproject.io/) servers for development, evaluation, and issue reproduction on [Docker](https://www.docker.com/).

----

Expand Down
14 changes: 14 additions & 0 deletions examples/learn/pki-secrets-tutorial-policy.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Enable secrets engine
path "sys/mounts/*" {
capabilities = [ "create", "read", "update", "delete", "list" ]
}

# List enabled secrets engine
path "sys/mounts" {
capabilities = [ "read", "list" ]
}

# Work with pki secrets engine
path "pki*" {
capabilities = [ "create", "read", "update", "delete", "list", "sudo" ]
}
2 changes: 1 addition & 1 deletion skydome
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ plan() {
}

destroy() {
tfout="$(terraform destroy -force -state=./tfstate/terraform.tfstate 2>&1)"
tfout="$(terraform destroy -auto-approve -state=./tfstate/terraform.tfstate 2>&1)"
echo "$tfout" > ./log/tf-"$(date -u "+%Y-%m-%dT%H:%M:%SZ")"-destroy.log
tfmsg "$tfout"
return $ret
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.1
3.7.2

0 comments on commit 3bbf329

Please sign in to comment.