mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-06 05:08:16 +00:00
Includes: - New role: web-app-shopware (Docker, MariaDB, Redis, OpenSearch) - Updated networks and ports configuration - Automated install, migration, and admin creation - Optional IAM integration via OIDC/LDAP plugins Reference: https://chatgpt.com/share/6907b0d4-ab14-800f-b576-62c0d26c8ad1
8 lines
309 B
YAML
8 lines
309 B
YAML
- name: Install & configure OIDC plugin (if enabled)
|
|
include_tasks: setup/oidc.yml
|
|
when: applications | get_app_conf(application_id, 'features.oidc')
|
|
|
|
- name: Install & configure LDAP plugin (if enabled)
|
|
include_tasks: setup/ldap.yml
|
|
when: applications | get_app_conf(application_id, 'features.ldap')
|