|
2 | 2 | - name: Prepare CA signing infrastructuren
|
3 | 3 | hosts: localhost
|
4 | 4 | connection: local
|
5 |
| - gather_facts: no |
| 5 | + gather_facts: false |
6 | 6 | vars:
|
7 | 7 | actual_pki_dir: "{{ pki_dir | default('../configuration_files/pki') }}"
|
8 | 8 | actual_ca_cn: "{{ ca_cn | default('Hyland - Alfresco signing CA') }}"
|
|
90 | 90 | ca_key_path: "{{ ca_key_stat.stat.path }}"
|
91 | 91 |
|
92 | 92 | - 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" |
93 | 96 | when: not (ca_cert_stat.stat.exists and ca_key_stat.stat.exists)
|
94 | 97 | block:
|
95 | 98 | - name: Create private key with password protection
|
96 | 99 | community.crypto.openssl_privatekey:
|
97 | 100 | backup: true
|
98 | 101 | size: "{{ ca_key_size | default(omit) }}"
|
99 | 102 | type: "{{ ca_key_type | default(omit) }}"
|
100 |
| - path: "{{ actual_pki_dir }}/private/alfresco_platform_CA.key" |
| 103 | + path: "{{ ownca_key_path }}" |
101 | 104 | passphrase: "{{ secret_ca_passphrase }}"
|
102 | 105 | cipher: auto
|
103 |
| - register: cakey |
104 | 106 |
|
105 | 107 | - name: Create certificate signing request (CSR) for CA certificate
|
106 | 108 | community.crypto.openssl_csr_pipe:
|
107 |
| - privatekey_path: "{{ cakey.filename }}" |
| 109 | + privatekey_path: "{{ ownca_key_path }}" |
108 | 110 | privatekey_passphrase: "{{ secret_ca_passphrase }}"
|
109 | 111 | common_name: "{{ actual_ca_cn }}"
|
110 | 112 | use_common_name_for_san: false
|
|
119 | 121 |
|
120 | 122 | - name: Create {{ actual_ca_cn }} certificate
|
121 | 123 | community.crypto.x509_certificate:
|
122 |
| - path: "{{ actual_pki_dir }}/ca/alfresco_platform_CA.crt" |
| 124 | + path: "{{ ownca_cert_path }}" |
123 | 125 | csr_content: "{{ ca_csr.csr }}"
|
124 |
| - privatekey_path: "{{ cakey.filename }}" |
| 126 | + privatekey_path: "{{ ownca_key_path }}" |
125 | 127 | privatekey_passphrase: "{{ secret_ca_passphrase }}"
|
126 | 128 | selfsigned_not_after: "{{ ca_days_valid_for | default(omit) }}"
|
127 | 129 | provider: selfsigned
|
128 | 130 |
|
129 | 131 | - name: Set CA variables
|
130 | 132 | 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 }}" |
133 | 135 |
|
134 | 136 | - name: Set PKI variables
|
135 | 137 | set_fact:
|
|
0 commit comments