mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-16 17:54:40 +02:00
19 lines
737 B
YAML
19 lines
737 B
YAML
- name: "include role for {{domain}} to receive certificates and do the modification routines"
|
|
include_role:
|
|
name: nginx-https-get-cert-modify-all
|
|
|
|
- name: "copy nginx domain configuration to {{ configuration_destination }}"
|
|
template:
|
|
src: "{{ vhost_template_src }}"
|
|
dest: "{{ configuration_destination }}"
|
|
notify: restart nginx
|
|
|
|
- name: "set oauth2_proxy_application_id (Needed due to lazzy loading issue)"
|
|
set_fact:
|
|
oauth2_proxy_application_id: "{{ application_id }}"
|
|
when: applications | is_feature_enabled('oauth2',application_id)
|
|
|
|
- name: "include the docker-oauth2-proxy role {{domain}}"
|
|
include_role:
|
|
name: docker-oauth2-proxy
|
|
when: applications | is_feature_enabled('oauth2',application_id) |