Skip to content

Commit

Permalink
Vault v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed May 1, 2020
1 parent 2aca688 commit 7f30e33
Show file tree
Hide file tree
Showing 5 changed files with 39 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.4.1

- Vault v1.4.1
- Update documentation

## 3.4.0

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

# -----------------------------------------------------------------------
# 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"
}

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

telemetry {
prometheus_retention_time = "30s"
disable_hostname = false
}
2 changes: 1 addition & 1 deletion flavors/consul/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.4.0"
default = "1.4.1"
}

# Set TF_VAR_consul_version to set this
Expand Down
2 changes: 1 addition & 1 deletion flavors/raft/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.4.0"
default = "1.4.1"
}

# -----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.0
3.4.1

0 comments on commit 7f30e33

Please sign in to comment.