Fix a variable name.

This commit is contained in:
Andrea Dell'Amico 2024-03-22 19:05:01 +01:00
parent 97ec4389be
commit 1ada201b12
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@
block:
- name: keycloak-certificates | Copy the key file where keycloak expects it
ansible.builtin.copy:
src: '{{ keycloak_source_certificate_key }}'
src: '{{ keycloak_source_cert_key }}'
dest: '{{ keycloak_conf_directory }}/server.key.pem'
owner: root
group: '{{ keycloak_user }}'
@ -57,7 +57,7 @@
- name: keycloak-certificates | Copy the certificate file where keycloak expects it
ansible.builtin.copy:
src: '{{ keycloak_source_certificate_file }}'
src: '{{ keycloak_source_cert_file }}'
dest: '{{ keycloak_conf_directory }}/server.crt.pem'
owner: root
group: '{{ keycloak_user }}'