mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 16:33:08 -06:00
16 lines
294 B
YAML
16 lines
294 B
YAML
---
|
|
|
|
- name: Create mountpoint
|
|
file:
|
|
state: directory
|
|
path: "{{ atl_shared_mountpoint }}"
|
|
mode: 0755
|
|
|
|
- name: Enable mountpoint in fstab
|
|
mount:
|
|
path: "{{ atl_shared_mountpoint }}"
|
|
src: "{{ efs_target }}:/"
|
|
fstype: efs
|
|
opts: "defaults,_netdev"
|
|
state: mounted
|