16 lines
509 B
YAML
Executable File
16 lines
509 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: constellation
|
|
vars:
|
|
constellation: "{{ glob_constellation | combine(loc_constellation | default({}), recursive=True) }}"
|
|
roles:
|
|
- constellation
|
|
|
|
- hosts: constellation-front
|
|
vars:
|
|
constellation: "{{ glob_constellation | combine(loc_constellation | default({}), recursive=True) }}"
|
|
nginx: '{{ glob_nginx | default({}) | combine(service_nginx | default({}) | combine(loc_nginx | default({}))) }}'
|
|
roles:
|
|
- nginx
|
|
- constellation-front
|