From b1b7dc507fa2a1757c2cb4f7ecd9196927dd738b Mon Sep 17 00:00:00 2001 From: David Kirwan Date: Mon, 12 Sep 2022 12:53:19 +0100 Subject: [PATCH] communishift: debugging filesystem permissions on storage mount Signed-off-by: David Kirwan Signed-off-by: Lenka Segura Signed-off-by: Patrik Polakovic --- .../communishift/library/communishift_storage_efs.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/communishift/library/communishift_storage_efs.py b/roles/communishift/library/communishift_storage_efs.py index ba609fec9c..14aab3411a 100644 --- a/roles/communishift/library/communishift_storage_efs.py +++ b/roles/communishift/library/communishift_storage_efs.py @@ -132,15 +132,15 @@ def run_module(): {"Key": "Name", "Value": module.params["project_name"]}, ], FileSystemId=module.params["aws_efs_filesystem_id"], - PosixUser={ - "Uid": 50000, - "Gid": 50000, - }, +# PosixUser={ +# "Uid": 50000, +# "Gid": 50000, +# }, RootDirectory={ "Path": "/", "CreationInfo": { - "OwnerUid": 50000, - "OwnerGid": 50000, + "OwnerUid": 1001, + "OwnerGid": 1001, "Permissions": "777", }, },