--- - name: create httpd directory ansible.builtin.file: path: "{{ httpd_pre__configuration_dir }}" state: directory owner: 0 group: 0 mode: "0644" - name: create passwords directory ansible.builtin.file: path: "{{ httpd_pre__passwords_dir }}" state: directory owner: "{{ httpd_pre__user }}" group: "{{ httpd_pre__group }}" mode: "0700" - name: create sites directory ansible.builtin.file: path: "{{ httpd_pre__sites_dir }}" state: directory owner: 0 group: 0 mode: "0755"