Improve ACME profile support.
parent
47ea1af180
commit
0e122e5f56
|
@ -182,6 +182,13 @@ order:
|
|||
certificate ID of the certificate that will be replaced by this order.
|
||||
type: str
|
||||
returned: when the certificate order is replacing a certificate through draft-ietf-acme-ari
|
||||
profile:
|
||||
description:
|
||||
- If the ACME CA supports profiles through the L(draft-aaron-acme-profiles,
|
||||
https://datatracker.ietf.org/doc/draft-aaron-acme-profiles/) mechanism and informs about the profile
|
||||
selected for this order, this field will contain the name of the profile used.
|
||||
type: str
|
||||
returned: depending on the ACME CA
|
||||
authorizations_by_identifier:
|
||||
description:
|
||||
- A dictionary mapping identifiers to their authorization objects.
|
||||
|
|
|
@ -382,6 +382,7 @@
|
|||
csr: "{{ remote_tmp_dir }}/cert.csr"
|
||||
replaces_cert_id: "{{ cert_info.cert_id }}"
|
||||
order_creation_error_strategy: fail
|
||||
profile: "{{ '90days' if acme_supports_profiles else omit }}"
|
||||
register: replacement_order_1
|
||||
|
||||
- name: "({{ select_crypto_backend }}) Get replacement order 1 information"
|
||||
|
|
Loading…
Reference in New Issue