-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f78ae1b
commit 5ef105d
Showing
4 changed files
with
58 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.2 | ||
3.2.3 |