pre_tasks, tasks, or post_tasks playbook objects, or as a task inside a role.include_role statement itself.apply option or use import_role instead.until and retries.| Parameter | Choices/Defaults | Comments | 
|---|---|---|
| allow_duplicates  boolean  | 
 | Overrides the role's metadata setting to allow using a role more than once with the same parameters. | 
| apply  -  added in 2.7 | Accepts a hash of task keywords (e.g.  tags,become) that will be applied to all tasks within the included role. | |
| defaults_from  string  | Default: "main" | File to load from a role's  defaults/directory. | 
| handlers_from  string  added in 2.8 | Default: "main" | File to load from a role's  handlers/directory. | 
| name  string / required  | The name of the role to be executed. | |
| public  boolean  added in 2.7 | 
 | This option dictates whether the role's  varsanddefaultsare exposed to the playbook. If set toyesthe variables will be available to tasks following theinclude_roletask. This functionality differs from standard variable exposure for roles listed under therolesheader orimport_roleas they are exposed at playbook parsing time, and available to earlier roles and tasks as well. | 
| tasks_from  string  | Default: "main" | File to load from a role's  tasks/directory. | 
| vars_from  string  | Default: "main" | File to load from a role's  vars/directory. | 
Note
include, this task could be static or dynamic, If static, it implied that it won’t need templating, loops or conditionals and will show included tasks in the --list options. Ansible would try to autodetect what is needed, but you can set static to yes or no at task level to control this.static behaviour and this action for dynamic one.See also
- include_role:
    name: myrole
- name: Run tasks/other.yaml instead of 'main'
  include_role:
    name: myrole
    tasks_from: other
- name: Pass variables to role
  include_role:
    name: myrole
  vars:
    rolevar1: value from task
- name: Use role in loop
  include_role:
    name: '{{ roleinputvar }}'
  loop:
    - '{{ roleinput1 }}'
    - '{{ roleinput2 }}'
  loop_control:
    loop_var: roleinputvar
- name: Conditional role
  include_role:
    name: myrole
  when: not idontwanttorun
- name: Apply tags to tasks within included file
  include_role:
    name: install
    apply:
      tags:
        - install
  tags:
    - always
   More information about Red Hat’s support of this module is available from this Red Hat Knowledge Base article.
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
    © 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
    https://docs.ansible.com/ansible/2.9/modules/include_role_module.html