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