mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 00:13:09 -06:00
16 lines
360 B
YAML
16 lines
360 B
YAML
---
|
|
|
|
- name: Create mountpoint
|
|
ansible.builtin.file:
|
|
state: directory
|
|
path: "{{ atl_shared_mountpoint }}"
|
|
mode: 0755
|
|
|
|
- name: Enable mountpoint in fstab
|
|
ansible.posix.mount:
|
|
path: "{{ atl_shared_mountpoint }}"
|
|
src: "{{ efs_target }}:{{ efs_src_dir }}"
|
|
fstype: "{{ efs_type }}"
|
|
opts: "{{ efs_mount_options }}"
|
|
state: mounted
|