fix: set cipher correctly
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 59s
Lint Markdown files / markdown-lint (push) Successful in 11s

This commit is contained in:
2025-07-31 09:53:01 +02:00
parent dbbaacdc69
commit 61b0a7c9ec
3 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
path: "{{ certificate_authority_client_path }}/privkey.pem"
type: "{{ certificate_authority_client_tls_key_type }}"
passphrase: "{{ certificate_authority_client_tls_key_passphrase }}"
cipher: auto
- name: Create a certificate signing request (CSR) for client certificate without subject alternative names (SANs)
community.crypto.openssl_csr:

View File

@ -5,6 +5,7 @@
passphrase: "{{ certificate_authority_intermediate_ca_tls_key_passphrase }}"
path: "{{ certificate_authority_intermediate_ca_path }}/privkey.pem"
type: "{{ certificate_authority_intermediate_ca_tls_key_type }}"
cipher: auto
- name: Create a certificate signing request (CSR) for intermediate CA
community.crypto.openssl_csr:

View File

@ -5,6 +5,7 @@
passphrase: "{{ certificate_authority_root_ca_tls_key_passphrase }}"
path: "{{ certificate_authority_root_ca_path }}/privkey.pem"
type: "{{ certificate_authority_root_ca_tls_key_type }}"
cipher: auto
- name: Create a certificate signing request (CSR) for root CA
community.crypto.openssl_csr: