mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-07 03:10:31 -07:00
16 lines
386 B
YAML
16 lines
386 B
YAML
---
|
|
- name: Save ansible custom facts
|
|
become: true
|
|
ansible.builtin.template:
|
|
src: keycloak.fact.j2
|
|
dest: /etc/ansible/facts.d/keycloak.fact
|
|
mode: '0644'
|
|
vars:
|
|
bootstrapped: true
|
|
|
|
- name: Refresh custom facts
|
|
ansible.builtin.setup:
|
|
filter: ansible_local
|
|
|
|
- name: Ensure that `KEYCLOAK_ADMIN[_PASSWORD]` get purged
|
|
ansible.builtin.include_tasks: systemd.yml
|