Documentation

    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 }}"