Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 2.41 KB

endentitynamecustomization.markdown

File metadata and controls

25 lines (18 loc) · 2.41 KB

EJBCA End Entity Name Configuration

Go Report Card GitHub tag (latest SemVer) Type: application license

The defaultEndEntityName field in the Issuer and ClusterIssuer resource spec allows you to configure how the End Entity Name is selected when issuing certificates through EJBCA. This field offers flexibility by allowing you to select different components from the Certificate Signing Request (CSR) or other contextual data as the End Entity Name.

Configurable Options

Here are the different options you can set for defaultEndEntityName in the ConfigMap or ejbca-k8s-csr-signer.keyfactor.com/endEntityName as an annotation:

  • cn: Uses the Common Name from the CSR's Distinguished Name.
  • dns: Uses the first DNS Name from the CSR's Subject Alternative Names (SANs).
  • uri: Uses the first URI from the CSR's Subject Alternative Names (SANs).
  • ip: Uses the first IP Address from the CSR's Subject Alternative Names (SANs).
  • Custom Value: Any other string will be directly used as the End Entity Name.

Default Behavior

If the endEntityName field is not explicitly set, the EJBCA Issuer will attempt to determine the End Entity Name using the following default behavior:

  • First, it will try to use the Common Name: It looks at the Common Name from the CSR's Distinguished Name.
  • If the Common Name is not available, it will use the first DNS Name: It looks at the first DNS Name from the CSR's Subject Alternative Names (SANs).
  • If the DNS Name is not available, it will use the first URI: It looks at the first URI from the CSR's Subject Alternative Names (SANs).
  • If the URI is not available, it will use the first IP Address: It looks at the first IP Address from the CSR's Subject Alternative Names (SANs).
  • If none of the above are available: The certificate issuance will fail.

If the Issuer is unable to determine a valid End Entity Name through these steps, an error will be logged and no End Entity Name will be set.