mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-17 22:14:25 +02:00
17 lines
694 B
YAML
17 lines
694 B
YAML
- name: "For '{{ application_id }}': Set database_application_id (Needed due to lazzy loading issue)"
|
|
set_fact:
|
|
database_application_id: "{{ application_id }}"
|
|
|
|
- name: "For '{{ application_id }}': Load database variables"
|
|
include_vars: "{{ item }}"
|
|
loop:
|
|
- "{{ cmp_db_docker_vars_file_docker }}" # Important to load docker variables first so that database can use them
|
|
- "{{ cmp_db_docker_vars_file_db }}" # Important to load them before docker role so that backup can use them
|
|
|
|
- name: "For '{{ application_id }}': Load docker-compose"
|
|
include_role:
|
|
name: docker-compose
|
|
|
|
- name: "For '{{ application_id }}': Load central RDBMS"
|
|
include_role:
|
|
name: cmp-rdbms |