add crl endpoint support
This commit is contained in:
parent
ec297a7dd3
commit
b41a2b1bc2
3 changed files with 30 additions and 1 deletions
|
@ -32,7 +32,6 @@
|
|||
size: "{{ key_size | default(omit) }}"
|
||||
delegate_to: localhost
|
||||
|
||||
# TODO: add a revocation methode, most probably crl, with crl_distribution_points
|
||||
- name: Generate a Certificate Signing Request
|
||||
become: false
|
||||
openssl_csr:
|
||||
|
@ -51,6 +50,7 @@
|
|||
key_usage: "{{ key_usage }}"
|
||||
key_usage_critical: yes
|
||||
subject_alt_name: "{{ subject_alt_name | default(omit) }}"
|
||||
crl_distribution_points: "{{ crl_distribution_points | default(omit) }}"
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Put the CA in a file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue