backup_ca_certificates.yml 443 B

123456789101112131415
  1. ---
  2. - name: Determine if CA certificate directory exists
  3. stat:
  4. path: "{{ etcd_ca_dir }}"
  5. get_checksum: false
  6. get_attributes: false
  7. get_mime: false
  8. register: etcd_ca_certs_dir_stat
  9. - name: Backup generated etcd certificates
  10. command: >
  11. tar -czf {{ etcd_conf_dir }}/etcd-ca-certificate-backup-{{ ansible_date_time.epoch }}.tgz
  12. {{ etcd_ca_dir }}
  13. args:
  14. warn: no
  15. when: etcd_ca_certs_dir_stat.stat.exists | bool