--- - name: Copy CA certificate copy: content: '{{node_exporter_tls_ca}}' dest: '{{node_exporter_home_dir}}/conf/ca.crt' notify: Restart node_exporter - name: Copy TLS Key copy: content: '{{node_exporter_tls_key}}' dest: '{{node_exporter_home_dir}}/conf/key' mode: '0600' notify: Restart node_exporter - name: Copy TLS cert copy: content: '{{node_exporter_tls_crt}}' dest: '{{node_exporter_home_dir}}/conf/crt' notify: Restart node_exporter