Criando arquivos via ansible


---


- hosts: localhost

  tasks:

  - name: Creating an empty file

    file:

      path: "/etc/ansible/file01.txt"  >>> CAMINHO DO ARQUIVO

      state: touch