-
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
ab86bcb
commit eacde8b
Showing
12 changed files
with
130 additions
and
23 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,6 +1,7 @@ | ||
## 3.7.0 | ||
|
||
- Vault v1.7.0 | ||
- Consul v1.9.4 | ||
- Update documentation | ||
|
||
## 3.6.4 | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Vault OSS v1.7.0 | ||
|
||
# ----------------------------------------------------------------------- | ||
# 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 | ||
} |
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
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,15 @@ | ||
{ | ||
"node_id": "${agent_node_id}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"cert_file": "/etc/ssl/certs/consul-client.crt", | ||
"key_file": "/etc/ssl/consul-client.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"node_id": "${agent_node_id}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"cert_file": "/etc/ssl/certs/consul-client.crt", | ||
"key_file": "/etc/ssl/consul-client.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
} | ||
} |
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,22 @@ | ||
{ | ||
"bootstrap_expect": 3, | ||
"datacenter": "${datacenter}", | ||
"data_dir": "${data_dir}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"recursors": [ | ||
"${recursor1}", | ||
"${recursor2}" | ||
], | ||
"cert_file": "/etc/ssl/certs/consul-server.crt", | ||
"key_file": "/etc/ssl/consul-server.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
}, | ||
"ui": true | ||
} |
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,22 @@ | ||
{ | ||
"bootstrap_expect": 3, | ||
"datacenter": "${datacenter}", | ||
"data_dir": "${data_dir}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"recursors": [ | ||
"${recursor1}", | ||
"${recursor2}" | ||
], | ||
"cert_file": "/etc/ssl/certs/consul-server.crt", | ||
"key_file": "/etc/ssl/consul-server.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
}, | ||
"ui": true | ||
} |
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.6.4 | ||
3.7.0 |