Documentation

    PLEASE NOTE: This document applies to v2.4 version and not to the latest stable release v2.7

    Documentation for other releases can be found by using the version selector in the left bottom of any doc page.

    find

    Use find module as a lookup. Returns the extra field of the module result.

    Example

    - debug:
        msg: "{{ find(paths='/') }}"
    
    - name: Copy all files in /tmp to /tmp2
      vars:
        tmp_query:
          paths: "/tmp"
          hidden: true
          recurse: false
      loop: "{{ find(tmp_query) }}"
      copy:
        src: "{{ item }}""
        dest: "/tmp2/{{ item | basename }}"