I’m going to show you a live demo with some simple Ansible code. I’m Luca Berton and welcome to today’s episode of Ansible Pilot
Today we’re talking about Ansible module copy. The full name is “ansible.builtin.copy” which means is part of the collection of modules “builtin” with ansible and shipped with it. This module is pretty stable and out for years. The purpose is to copy files to remote locations. Please note that the opposite is done by Ansible fetch module. For Windows target use Ansible win_copy module.
The parameter list is pretty wide but I’ll summarize the most useful.
The only required parameter is “dest” which specifies the remote absolute path destination.
The “src” specifies the source file in the controller host. It could be a relative or absolute path. I recommend absolutely.
The backup boolean option allows you to create a backup if the utility overwrites any file.
If there is any tool to validate the file we could specify it in the validate parameter, very useful for configuration files.
Let me also highlight that we could also specify the permissions and SELinux properties.
Let’s jump in a real-life playbook to copy files to remote hosts with Ansible.
---
- name: copy module demo
hosts: all
become: false
tasks:
- name: copy report.txt
ansible.builtin.copy:
src: report.txt
dest: /home/devops/report.txt
owner: devops
mode: '0644'
test report.txt