mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-16 17:06:41 +02:00
20 lines
679 B
YAML
20 lines
679 B
YAML
- block:
|
|
- include_tasks: 01_core.yml
|
|
- set_fact:
|
|
run_once_sys_srv_web_inj_logout: true
|
|
when: run_once_sys_srv_web_inj_logout is not defined
|
|
|
|
- name: "Load logout code for '{{ application_id }}'"
|
|
set_fact:
|
|
logout_code: "{{ lookup('template', 'logout_one_liner.js.j2') }}"
|
|
|
|
- name: "Collapse logout code into one-liner for '{{ application_id }}'"
|
|
set_fact:
|
|
logout_code_one_liner: "{{ logout_code | to_one_liner }}"
|
|
|
|
- name: "Append logout CSP hash for '{{ application_id }}'"
|
|
set_fact:
|
|
applications: "{{ applications | append_csp_hash(application_id, logout_code_one_liner) }}"
|
|
changed_when: false
|
|
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|