Add a variable to set the cert and key path files.
This commit is contained in:
parent
85698b8878
commit
b9aff40306
|
@ -208,8 +208,10 @@ self_signed_subject: "/CN={{ ansible_fqdn }} self signed"
|
|||
mkcert_create_certificate: false
|
||||
mkcert_cert_name: "{{ ansible_fqdn }}.pem"
|
||||
mkcert_cert_dest_path: "{{ pki_dir }}/certs"
|
||||
mkcert_cert_file_path: "{{ mkcert_cert_dest_path }}/{{ mkcert_cert_name }}"
|
||||
mkcert_key_name: "{{ ansible_fqdn }}-key.pem"
|
||||
mkcert_key_dest_path: "{{ pki_dir }}/keys"
|
||||
mkcert_key_file_path: "{{ mkcert_key_dest_path }}/{{ mkcert_key_name }}"
|
||||
mkcert_dsn_and_ip_list: "{{ ansible_fqdn }} {% for ip in ansible_all_ipv4_addresses %}{{ ip }} {% endfor %}"
|
||||
mkcert_ca_host: localhost
|
||||
|
||||
|
|
Loading…
Reference in New Issue