Ensure vault file permissions are correct

This commit is contained in:
Matthew Mosesohn 2018-09-07 11:27:25 +03:00 committed by Matthew Mosesohn
parent baf1aba239
commit aaa9a4efac

View file

@ -65,3 +65,9 @@
with_items: "{{ etcd_node_certs_needed|d([]) }}"
when: inventory_hostname in etcd_node_cert_hosts
notify: set etcd_secret_changed
- name: gen_certs_vault | ensure file permissions
shell: >-
find {{etcd_cert_dir }} -type d -exec chmod 0755 {} \; &&
find {{etcd_cert_dir }} -type f -exec chmod 0640 {} \;
changed_when: false