Good day Guys
How do I got about copying files on the remote host?
My client up loads the cert in /srv, and I need ansible to copy it.
This is what I got:
- name: copy SSL key domain.key
command: creates=“{{ ssl_cert_dir }}/domain.key” cp “{{ ssl_cert_dir }}/domain.key” /etc/apache2/ssl/key/
notify: - restart apache2
Thanks
Brent