certmanager v1.14

Order.status.authorizations[]

ACMEAuthorization contains data returned from the ACME server on an authorization that must be completed in order validate a DNS name on an ACME Order resource.

5 fields
Order.status.authorizations[] fields and descriptions
Field / TypeDescription
object[]

Challenges specifies the challenge types offered by the ACME server. One of these challenge types will be selected when validating the DNS name and an appropriate Challenge resource will be created to perform the ACME challenge process.

identifier
string

Identifier is the DNS name to be validated as part of this authorization

initialState
string

InitialState is the initial state of the ACME authorization when first fetched from the ACME server. If an Authorization is already 'valid', the Order controller will not create a Challenge resource for the authorization. This will occur when working with an ACME server that enables 'authz reuse' (such as Let's Encrypt's production endpoint). If not set and 'identifier' is set, the state is assumed to be pending and a Challenge will be created.

  • enum: ["valid","ready","pending","processing","invalid","expired","errored"]
url
string required

URL is the URL of the Authorization that must be completed

wildcard
boolean

Wildcard will be true if this authorization is for a wildcard DNS name. If this is true, the identifier will be the *non-wildcard* version of the DNS name. For example, if '*.example.com' is the DNS name being validated, this field will be 'true' and the 'identifier' field will be 'example.com'.