#!/usr/bin/env ansible-playbook --- # Deploy dovecot server - hosts: dovecot vars: certbot: '{{ glob_certbot | default({}) | combine(loc_certbot | default({})) }}' ldap: '{{ glob_ldap | default({}) | combine(loc_ldap | default({})) }}' dovecot: '{{ glob_dovecot | default({}) | combine(loc_dovecot | default({})) }}' roles: - certbot - dovecot