Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable TLS based communication with Zookeeper Backend #4856

Merged
9 changes: 2 additions & 7 deletions website/source/docs/configuration/storage/zookeeper.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,11 @@ znodes and, potentially, take Vault out of service.
ip:70.95.0.0/16
```

- `auth_info` `(string: "")` – Specifies an authentication string in Zookeeper
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

auth_info is removed in this commit since it was incorrectly committed as a duplicate in a previous commit.

AddAuth format. For example, `digest:UserName:Password` could be used to
authenticate as user `UserName` using password `Password` with the `digest`
mechanism.

- `tls_enabled` `(bool: false)` – Specifies if TLS communication with the Zookeeper
backend has to be enabled.

- `tls_ca_file` `(string: "")` – Specifies the path to the CA certificate used
for Zookeeper communication.
- `tls_ca_file` `(string: "")` – Specifies the path to the CA certificate file used
for Zookeeper communication. Multiple CA certificates can be provided in the same file.

- `tls_cert_file` `(string: "")` (optional) – Specifies the path to the
certificate for Zookeeper communication.
Expand Down