Fix a variable name.

This commit is contained in:
Andrea Dell'Amico 2024-03-22 18:55:55 +01:00
parent 5c33e46a71
commit 97ec4389be
Signed by untrusted user: 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_certificate_key }}'
src: '{{ keycloak_source_certificate_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_certificate_file }}'
src: '{{ keycloak_source_certificate_file }}'
dest: '{{ keycloak_conf_directory }}/server.crt.pem'
owner: root
group: '{{ keycloak_user }}'