I have created the following JSON to allow view access to my external collection for all users:
Example PERMISSIONS value:
{
“collectionPermissions”: [
{
“id”: “TCJMembers”,
“read”: [“Admin”, “Member”],
“write”: [“Admin”]
}
]
I then converted to this string:
“{"collectionPermissions":[{"id":"TCJMembers","read":["Admin","Member"],"write":["Admin"]}]}”
I tried entering this string with and without the outer quotes, but when I check the adapter/AWS app runner status it does not read the configuration parameters I just established in the AWS secret and members still do not have view access to the target external collection
Thanks for your help in advance.