mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 11:38:02 +00:00
Fix naming of enable_templating parameter (#21319)
Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com>
This commit is contained in:
@@ -3417,7 +3417,7 @@ parameter.
|
|||||||
[RFC 5280 Section 4.2.2.1](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.2.1)
|
[RFC 5280 Section 4.2.2.1](https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.2.1)
|
||||||
for information about the Authority Information Access field.
|
for information about the Authority Information Access field.
|
||||||
|
|
||||||
- `enable_aia_url_templating` `(bool: false)` - Specifies that the above AIA
|
- `enable_templating` `(bool: false)` - Specifies that the above AIA
|
||||||
URL values (`issuing_certificates`, `crl_distribution_points`, and
|
URL values (`issuing_certificates`, `crl_distribution_points`, and
|
||||||
`ocsp_servers`) should be templated. This replaces the literal value
|
`ocsp_servers`) should be templated. This replaces the literal value
|
||||||
`{{issuer_id}}` with the ID of the issuer doing the issuance, the
|
`{{issuer_id}}` with the ID of the issuer doing the issuance, the
|
||||||
@@ -3433,7 +3433,7 @@ parameter.
|
|||||||
|
|
||||||
- `issuing_certificates={{cluster_aia_path}}/issuer/{{issuer_id}}/der`
|
- `issuing_certificates={{cluster_aia_path}}/issuer/{{issuer_id}}/der`
|
||||||
- `crl_distribution_points={{cluster_aia_path}}/issuer/{{issuer_id}}/crl/der`
|
- `crl_distribution_points={{cluster_aia_path}}/issuer/{{issuer_id}}/crl/der`
|
||||||
- `ocsp_servers={{cluster_path}}/ocsp`
|
- `ocsp_servers={{cluster_aia_path}}/ocsp`
|
||||||
|
|
||||||
~> **Note**: If no cluster-local address is present and templating is used,
|
~> **Note**: If no cluster-local address is present and templating is used,
|
||||||
issuance will fail.
|
issuance will fail.
|
||||||
@@ -3442,7 +3442,9 @@ parameter.
|
|||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"ocsp_servers": ["https://..."]
|
"issuing_certificates": ["{{cluster_aia_path}}/issuer/{{issuer_id}}/der"],
|
||||||
|
"crl_distribution_points": ["{{cluster_aia_path}}/issuer/{{issuer_id}}/crl/der"],
|
||||||
|
"ocsp_servers": ["{{cluster_aia_path}}/ocsp"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user