Unverified Commit a46b5f94 authored by Michael Golowka's avatar Michael Golowka Committed by GitHub
Browse files

database/cassandra: Docs: Add known issue warning to `pem_bundle` field (#11823)

Showing with 5 additions and 0 deletions
+5 -0
......@@ -46,6 +46,11 @@ has a number of parameters to further configure a connection.
certificate and private key; a certificate, private key, and issuing CA
certificate; or just a CA certificate.
!> **Known Issue:** There is a known issue when using `pem_bundle` with only a CA (no client certificate & key)
where Vault will not parse the CA certificate correctly. To work around this, use `pem_json` with the
following structure: `{"ca_chain": ["-----BEGIN CERTIFICATE-----\nMIIEFjC...FNYakP7I\n-----END CERTIFICATE-----"]}`
Also make sure the PEM data is properly JSON encoded with `\n` instead of newlines.
- `pem_json` `(string: "")` – Specifies JSON containing a certificate and
private key; a certificate, private key, and issuing CA certificate; or just a
CA certificate. For convenience format is the same as the output of the
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment