ITOPS-2059 renaming aws_efs_config to aws_shared_fs_config as per PR feedback

This commit is contained in:
Geoff Jacobs
2019-08-26 14:20:12 +10:00
parent 324dfb12e2
commit ccde4dfc1f
7 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
---
- 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 }}:{{ efs_src_dir }}"
fstype: "{{ efs_type }}"
opts: "{{ efs_mount_options }}"
state: mounted