--- # Deploy Application Code via Git # Wrapper Playbook for application role deploy_code tasks - hosts: "{{ deployment_hosts | default('production') }}" gather_facts: yes become: no vars: application_deployment_method: git deployment_environment: "{{ deployment_environment | default('production') }}" tasks: - name: Include application deploy_code tasks ansible.builtin.include_role: name: application tasks_from: deploy_code tags: - application - deploy - code