communishift: debugging filesystem permissions on storage mount

Signed-off-by: David Kirwan <dkirwan@redhat.com>
Signed-off-by: Lenka Segura <lsegura@redhat.com>
Signed-off-by: Patrik Polakovic <ppolakov@redhat.com>
This commit is contained in:
David Kirwan 2022-09-12 12:53:19 +01:00
parent fe0c26ea9d
commit b1b7dc507f

View file

@ -132,15 +132,15 @@ def run_module():
{"Key": "Name", "Value": module.params["project_name"]}, {"Key": "Name", "Value": module.params["project_name"]},
], ],
FileSystemId=module.params["aws_efs_filesystem_id"], FileSystemId=module.params["aws_efs_filesystem_id"],
PosixUser={ # PosixUser={
"Uid": 50000, # "Uid": 50000,
"Gid": 50000, # "Gid": 50000,
}, # },
RootDirectory={ RootDirectory={
"Path": "/", "Path": "/",
"CreationInfo": { "CreationInfo": {
"OwnerUid": 50000, "OwnerUid": 1001,
"OwnerGid": 50000, "OwnerGid": 1001,
"Permissions": "777", "Permissions": "777",
}, },
}, },