Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Aug 11, 2021
2 parents 63f9c18 + 475dec0 commit b4a671e
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.8.1

- Vault 1.8.1

## 3.8.0

- Vault 1.8.0
Expand Down
2 changes: 1 addition & 1 deletion black_lion/templates/oss/vault_config_1.7.1.hcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault OSS v1.7.0
# Vault OSS v1.7.1

# -----------------------------------------------------------------------
# Global configuration
Expand Down
2 changes: 1 addition & 1 deletion black_lion/templates/oss/vault_config_1.7.2.hcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault OSS v1.7.0
# Vault OSS v1.7.2

# -----------------------------------------------------------------------
# Global configuration
Expand Down
2 changes: 1 addition & 1 deletion black_lion/templates/oss/vault_config_1.7.3.hcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault OSS v1.7.0
# Vault OSS v1.7.3

# -----------------------------------------------------------------------
# Global configuration
Expand Down
2 changes: 1 addition & 1 deletion black_lion/templates/oss/vault_config_1.8.0.hcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault OSS v1.7.0
# Vault OSS v1.8.0

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

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

api_addr = "${api_addr}"
cluster_name = "${cluster_name}"
cluster_address = "${cluster_address}"
disable_mlock = "${disable_mlock}"
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
}
4 changes: 4 additions & 0 deletions examples/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
# See README.md for more details
# ========================================================================

terraform {
required_version = ">= 0.13"
}

# We presume Vault at https://localhost:8200
# and the presence of a ~/.vault-token here.

Expand Down
4 changes: 2 additions & 2 deletions flavors/consul/vaultron.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# =======================================================================

terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
}

# -----------------------------------------------------------------------
Expand All @@ -12,7 +12,7 @@ terraform {

# Set TF_VAR_vault_version to override this
variable "vault_version" {
default = "1.8.0"
default = "1.8.1"
}

# Set TF_VAR_consul_version to override this
Expand Down
4 changes: 2 additions & 2 deletions flavors/raft/vaultron.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# =======================================================================

terraform {
required_version = ">= 0.12"
required_version = ">= 0.13"
}

# -----------------------------------------------------------------------
Expand All @@ -12,7 +12,7 @@ terraform {

# Set TF_VAR_vault_version to override this
variable "vault_version" {
default = "1.8.0"
default = "1.8.1"
}

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

0 comments on commit b4a671e

Please sign in to comment.