You've already forked ansible-role-certificate-authority
fix: set cipher correctly
This commit is contained in:
@ -5,6 +5,7 @@
|
|||||||
path: "{{ certificate_authority_client_path }}/privkey.pem"
|
path: "{{ certificate_authority_client_path }}/privkey.pem"
|
||||||
type: "{{ certificate_authority_client_tls_key_type }}"
|
type: "{{ certificate_authority_client_tls_key_type }}"
|
||||||
passphrase: "{{ certificate_authority_client_tls_key_passphrase }}"
|
passphrase: "{{ certificate_authority_client_tls_key_passphrase }}"
|
||||||
|
cipher: auto
|
||||||
|
|
||||||
- name: Create a certificate signing request (CSR) for client certificate without subject alternative names (SANs)
|
- name: Create a certificate signing request (CSR) for client certificate without subject alternative names (SANs)
|
||||||
community.crypto.openssl_csr:
|
community.crypto.openssl_csr:
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
passphrase: "{{ certificate_authority_intermediate_ca_tls_key_passphrase }}"
|
passphrase: "{{ certificate_authority_intermediate_ca_tls_key_passphrase }}"
|
||||||
path: "{{ certificate_authority_intermediate_ca_path }}/privkey.pem"
|
path: "{{ certificate_authority_intermediate_ca_path }}/privkey.pem"
|
||||||
type: "{{ certificate_authority_intermediate_ca_tls_key_type }}"
|
type: "{{ certificate_authority_intermediate_ca_tls_key_type }}"
|
||||||
|
cipher: auto
|
||||||
|
|
||||||
- name: Create a certificate signing request (CSR) for intermediate CA
|
- name: Create a certificate signing request (CSR) for intermediate CA
|
||||||
community.crypto.openssl_csr:
|
community.crypto.openssl_csr:
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
passphrase: "{{ certificate_authority_root_ca_tls_key_passphrase }}"
|
passphrase: "{{ certificate_authority_root_ca_tls_key_passphrase }}"
|
||||||
path: "{{ certificate_authority_root_ca_path }}/privkey.pem"
|
path: "{{ certificate_authority_root_ca_path }}/privkey.pem"
|
||||||
type: "{{ certificate_authority_root_ca_tls_key_type }}"
|
type: "{{ certificate_authority_root_ca_tls_key_type }}"
|
||||||
|
cipher: auto
|
||||||
|
|
||||||
- name: Create a certificate signing request (CSR) for root CA
|
- name: Create a certificate signing request (CSR) for root CA
|
||||||
community.crypto.openssl_csr:
|
community.crypto.openssl_csr:
|
||||||
|
Reference in New Issue
Block a user