Document agent injecting PKI CAs (#15930)
* Document agent injecting PKI CAs Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com> * Remove extra empty-string conditional
This commit is contained in:
parent
9ffa7ae257
commit
28916301c1
|
@ -64,6 +64,16 @@ through this function will be based on the certificate's expiration.
|
|||
{{ pkiCert "pki/issue/my-domain-dot-com" "common_name=foo.example.com" }}
|
||||
```
|
||||
|
||||
To fetch the issuing CA for this mount, use:
|
||||
|
||||
```
|
||||
{{- with secret "pki/cert/ca" -}}
|
||||
{{ .Data.certificate }}
|
||||
{{- end -}}
|
||||
```
|
||||
|
||||
Alternatively, `pki/cert/ca_chain` can be used to fetch the full CA chain.
|
||||
|
||||
## Global Configurations
|
||||
|
||||
The top level `template_config` block has the following configuration entries that affect
|
||||
|
|
Loading…
Reference in New Issue