Boa tarde. Estou criando um playbook para copiar todos os arquivos do mesmo diretório, mas estou tomando erro. Vou listar o código e o erro. O comando copy não permite essa opção? Desde já agradeço.
Código:
---
# Projeto Copiar certificados para ambiente NGINX
- name: Inventario
hosts: all
tasks:
- name: Copia certificado e faz backup do original se houver diferença
copy:
src: /home/users/bruno.py/arquivos/certificados/*
dest: /u01/app/nginx/conf/certificados/
owner: root
group: root
mode: 0644
backup: yes
- name: Reiniciar nginx
shell: "service rh-nginx118-nginx restart"
Erro:
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: If you are using a module and expect the file to exist on the remote, see the remote_src option
fatal: [www00623]: FAILED! => {"changed": false, "msg": "Could not find or access '/home/users/bruno.py/arquivos/certificados/*' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}