2 Commits
0.1.1 ... 0.1.3

Author SHA1 Message Date
c3fb49bbd4 fix(root_ca): set passphrase correctly
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 13s
Ansible Linter / ansible-lint (push) Failing after 57s
2025-07-31 11:56:27 +02:00
61b0a7c9ec fix: set cipher correctly
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 59s
Lint Markdown files / markdown-lint (push) Successful in 11s
2025-07-31 09:53:01 +02:00
3 changed files with 4 additions and 0 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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:
@ -13,6 +14,7 @@
common_name: "{{ certificate_authority_root_ca_common_name }}" common_name: "{{ certificate_authority_root_ca_common_name }}"
path: "{{ certificate_authority_root_ca_path }}/cert-req.pem" path: "{{ certificate_authority_root_ca_path }}/cert-req.pem"
privatekey_path: "{{ certificate_authority_root_ca_path }}/privkey.pem" privatekey_path: "{{ certificate_authority_root_ca_path }}/privkey.pem"
privatekey_passphrase: "{{ certificate_authority_root_ca_tls_key_passphrase }}"
use_common_name_for_san: false use_common_name_for_san: false
- name: Create self-signed certificate for root CA - name: Create self-signed certificate for root CA