community.crypto.x509_crl_info – Retrieve information on Certificate Revocation Lists (CRLs)¶
Note
This plugin is part of the community.crypto collection (version 1.6.1).
To install it use: ansible-galaxy collection install community.crypto
.
To use it in a playbook, specify: community.crypto.x509_crl_info
.
New in version 1.0.0: of community.crypto
Requirements¶
The below requirements are needed on the host that executes this module.
cryptography >= 1.2
Parameters¶
Notes¶
Note
All timestamp values are provided in ASN.1 TIME format, in other words, following the
YYYYMMDDHHMMSSZ
pattern. They are all in UTC.Supports
check_mode
.
See Also¶
See also
- community.crypto.x509_crl
The official documentation on the community.crypto.x509_crl module.
Examples¶
- name: Get information on CRL
community.crypto.x509_crl_info:
path: /etc/ssl/my-ca.crl
register: result
- name: Print the information
ansible.builtin.debug:
msg: "{{ result }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Felix Fontein (@felixfontein)