diff --git a/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte b/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte index f536120756..92ecc3c5b8 100644 --- a/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/workspace_settings/+page.svelte @@ -1088,12 +1088,15 @@ disabled={emptyString(s3ResourceSettings.resourcePath)} bind:checked={s3ResourceSettings.publicResource} options={{ - right: 'S3 resource details can be accessed by all users of this workspace', + right: + 'S3 resource details and content can be accessed by all users of this workspace', rightTooltip: 'If set, all users of this workspace will have access the to entire content of the S3 bucket, as well as the resource details. this effectively by-pass the permissions set on the resource and makes it public to everyone.' }} /> {#if s3ResourceSettings.publicResource === true} +
+ S3 resource public access is ON, which means that the entire content of the S3 bucket will be accessible to all the users of this workspace regardless of whether @@ -1103,6 +1106,26 @@ {/if}
+ {:else} +
+ + {#if s3ResourceSettings.publicResource === true} +
+ + object public access is ON, which means that the entire content of the object store + will be accessible to all the users of this workspace regardless of whether they + have access the resource or not. + + {/if} +
{/if}