I have organized all my playbooks into roles. Now that I have all the roles, I'm trying to create a new role that would include all the other roles.
In Ansible, is it possible to create a role that just calls other roles? If so, is it possible to do it as a list, like in a playbook:
---
- hosts: webservers
roles:
- role1
- role2
- role3