mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 19:00:28 -07:00
16 lines
387 B
YAML
16 lines
387 B
YAML
---
|
|
- name: Write 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: Re-read custom facts
|
|
ansible.builtin.setup:
|
|
filter: ansible_local
|
|
|
|
- name: Ensure that `KEYCLOAK_ADMIN[_PASSWORD]` get purged
|
|
ansible.builtin.include_tasks: systemd.yml
|