Skip to content

Commit

Permalink
Vault v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Dec 20, 2019
1 parent f78ae1b commit 5ef105d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.2.3

- Vault v1.3.1
- Update documentation

## 3.2.2

- Vault v1.3.0
Expand Down
51 changes: 51 additions & 0 deletions black_lion/templates/oss/vault_config_1.3.1.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Vault OSS v1.3.1

# -----------------------------------------------------------------------
# Global configuration
# -----------------------------------------------------------------------

api_addr = "${api_addr}"
cluster_name = "${cluster_name}"
cluster_address = "${cluster_address}"
log_level = "${log_level}"
ui = true
plugin_directory = "/vault/plugins"

# -----------------------------------------------------------------------
# Listener configuration
# -----------------------------------------------------------------------

listener "tcp" {
address = "${address}"
tls_cert_file = "/etc/ssl/certs/vault-server.crt"
tls_key_file = "/etc/ssl/vault-server.key"
}

# -----------------------------------------------------------------------
# Storage configuration
# -----------------------------------------------------------------------

storage "consul" {
address = "${consul_address}:8500"
scheme = "https"
tls_ca_file = "/etc/ssl/certs/ca.pem"
token = "b4c0ffee-3b77-04af-36d6-738b697872e6"
path = "vault/"
disable_clustering = "${disable_clustering}"
service_tags = "${service_tags}"
}

# -----------------------------------------------------------------------
# Optional cloud seal configuration
# -----------------------------------------------------------------------

# GCPKMS

# -----------------------------------------------------------------------
# Enable Prometheus metrics by default
# -----------------------------------------------------------------------

telemetry {
prometheus_retention_time = "30s"
disable_hostname = false
}
2 changes: 1 addition & 1 deletion vaultron.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {

# Set TF_VAR_vault_version to set this
variable "vault_version" {
default = "1.3.0"
default = "1.3.1"
}

# Set TF_VAR_consul_version to set this
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.2.3

0 comments on commit 5ef105d

Please sign in to comment.