-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
List client cert requirements in documentation
- Loading branch information
Hayden Roszell
committed
Sep 15, 2022
1 parent
056e647
commit d9bf43f
Showing
3 changed files
with
7 additions
and
3 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
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 |
---|---|---|
|
@@ -41,7 +41,9 @@ vault secrets enable -path=internal kv | |
|
||
Next, set a secret in Vault using the v1 KV engine. Omitted was the creation of `tls.crt` and `tls.key` files containing the client certificate keypair. | ||
Shell history can easily be retrieved, so configuring the KV secret should be done in a methodical manner. Key names in this step are | ||
unimportant, and the client certificate and private key may be configured in the same key-value tag. | ||
unimportant, and the client certificate and private key may be configured in the same key-value tag. The client certificate must be a PEM encoded certificate as per | ||
[Section 5.1 of RFC7468](https://datatracker.ietf.org/doc/html/rfc7468#section-5.1) | ||
and the private key be a PEM encoded matching PKCS#8 private key as per [Section 11 of RFC7468](https://datatracker.ietf.org/doc/html/rfc7468#section-11). | ||
```shell | ||
vault kv put secret/ejbca [email protected] [email protected] | ||
``` | ||
|