Skip to content

Commit 8654fb6

Browse files
committed
don't use registered var due to ansible-collections/community.crypto#590
1 parent 4b7fca7 commit 8654fb6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

playbooks/pki.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Prepare CA signing infrastructuren
33
hosts: localhost
44
connection: local
5-
gather_facts: no
5+
gather_facts: false
66
vars:
77
actual_pki_dir: "{{ pki_dir | default('../configuration_files/pki') }}"
88
actual_ca_cn: "{{ ca_cn | default('Hyland - Alfresco signing CA') }}"
@@ -90,21 +90,23 @@
9090
ca_key_path: "{{ ca_key_stat.stat.path }}"
9191

9292
- name: Generate out own CA
93+
vars:
94+
ownca_key_path: "{{ actual_pki_dir }}/private/alfresco_platform_CA.key"
95+
ownca_cert_path: "{{ actual_pki_dir }}/ca/alfresco_platform_CA.crt"
9396
when: not (ca_cert_stat.stat.exists and ca_key_stat.stat.exists)
9497
block:
9598
- name: Create private key with password protection
9699
community.crypto.openssl_privatekey:
97100
backup: true
98101
size: "{{ ca_key_size | default(omit) }}"
99102
type: "{{ ca_key_type | default(omit) }}"
100-
path: "{{ actual_pki_dir }}/private/alfresco_platform_CA.key"
103+
path: "{{ ownca_key_path }}"
101104
passphrase: "{{ secret_ca_passphrase }}"
102105
cipher: auto
103-
register: cakey
104106

105107
- name: Create certificate signing request (CSR) for CA certificate
106108
community.crypto.openssl_csr_pipe:
107-
privatekey_path: "{{ cakey.filename }}"
109+
privatekey_path: "{{ ownca_key_path }}"
108110
privatekey_passphrase: "{{ secret_ca_passphrase }}"
109111
common_name: "{{ actual_ca_cn }}"
110112
use_common_name_for_san: false
@@ -119,17 +121,17 @@
119121

120122
- name: Create {{ actual_ca_cn }} certificate
121123
community.crypto.x509_certificate:
122-
path: "{{ actual_pki_dir }}/ca/alfresco_platform_CA.crt"
124+
path: "{{ ownca_cert_path }}"
123125
csr_content: "{{ ca_csr.csr }}"
124-
privatekey_path: "{{ cakey.filename }}"
126+
privatekey_path: "{{ ownca_key_path }}"
125127
privatekey_passphrase: "{{ secret_ca_passphrase }}"
126128
selfsigned_not_after: "{{ ca_days_valid_for | default(omit) }}"
127129
provider: selfsigned
128130

129131
- name: Set CA variables
130132
set_fact:
131-
ca_cert_path: "{{ actual_pki_dir }}/ca/alfresco_platform_CA.crt"
132-
ca_key_path: "{{ cakey.filename }}"
133+
ca_cert_path: "{{ ownca_cert_path }}"
134+
ca_key_path: "{{ ownca_key_path }}"
133135

134136
- name: Set PKI variables
135137
set_fact:

0 commit comments

Comments
 (0)