kayobe/ansible/roles/kolla/tasks/config.yml
Mark Goddard 4652c29706 Improve permissions around Kolla configuration.
Make ansible_user own files so we don't need to be root.
Files no longer world readable.
2017-03-16 10:55:54 +00:00

12 lines
252 B
YAML

---
- name: Ensure the Kolla configuration directores exist
file:
path: "{{ item }}"
state: directory
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
mode: 0750
become: True
with_items:
- "{{ kolla_config_path }}"