Files
dc-deployments-automation/roles/aws_efs_config/tasks/main.yml
Azra Sulthana b960c1c4cb crowd
2019-07-11 05:34:52 +00:00

18 lines
370 B
YAML

---
- name: Create mountpoint
file:
state: directory
path: "{{ atl_shared_mountpoint }}"
mode: 0755
when: atl_product_edition!= "crowd"
- name: Enable mountpoint in fstab
mount:
path: "{{ atl_shared_mountpoint }}"
src: "{{ efs_target }}:/"
fstype: efs
opts: "defaults,_netdev"
state: mounted
when: atl_product_edition!= "crowd"