Add config docs for leader_tls_servername. (#11369)

This commit is contained in:
Nick Cabatoff 2021-04-16 09:40:42 -04:00 committed by GitHub
parent 58456a63a9
commit 999bd34faa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -37,7 +37,10 @@ leader node.
- `leader_client_key` `(string: "")` - Client key used to communicate with
Raft's leader node.
- `leader_tls_servername` `(string: "")` - TLS servername to use when connecting with HTTPS. Should match one of the names in the DNS SANs of the remote server certificate.
- `leader_tls_servername` `(string: "")` - TLS servername to use when connecting with HTTPS.
Should match one of the names in the DNS SANs of the remote server certificate.
- `auto_join` `(string: "")` - Defines any cloud auto-join metadata. If
supplied, Vault will attempt to automatically discover peers in addition to what
can be provided via 'leader_api_addr'.

View file

@ -123,6 +123,10 @@ set `disable_mlock` to `true`, and to disable memory swapping on the system.
- `auto_join_port` `(uint: "")` - The optional port used for addressed discovered
via auto-join.
- `leader_tls_servername` `(string: "")` - TLS servername to use when connecting with HTTPS.
Should match one of the names in the DNS SANs of the remote server certificate.
See also [Integrated Storage and TLS](https://www.vaultproject.io/docs/concepts/integrated-storage#autojoin-with-tls-servername)
- `leader_ca_cert_file` `(string: "")` - File path to the CA cert of the
possible leader node.