mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 00:43:06 -06:00
ITOPS-2059 renaming aws_efs_config to aws_shared_fs_config as per PR feedback
This commit is contained in:
15
roles/aws_shared_fs_config/tasks/main.yml
Normal file
15
roles/aws_shared_fs_config/tasks/main.yml
Normal 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
|
||||
Reference in New Issue
Block a user