#!/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