From c9252589d9cf54e6b35f0cb0194cf334357b0c62 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Mon, 14 Oct 2024 11:05:55 +0200 Subject: [PATCH] Update bundle/permissions/workspace_root.go Co-authored-by: Pieter Noordhuis --- bundle/permissions/workspace_root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/permissions/workspace_root.go b/bundle/permissions/workspace_root.go index 49cac6dd..cccdc72f 100644 --- a/bundle/permissions/workspace_root.go +++ b/bundle/permissions/workspace_root.go @@ -108,7 +108,7 @@ func checkWorkspaceRootPermissions(b *bundle.Bundle) diag.Diagnostics { diags = diags.Append(diag.Diagnostic{ Severity: diag.Warning, Summary: fmt.Sprintf("the bundle root path %s is writable by all workspace users", b.Config.Workspace.RootPath), - Detail: "bundle is configured to /Workspace/Shared, which will give read/write access to all users. If all users should have access, add CAN_MANAGE for 'group_name: users' permission to your bundle configuration. If the deployment should be restricted, move it to a restricted folder such as /Users/", + Detail: "The bundle is configured to use /Workspace/Shared, which will give read/write access to all users. If this is intentional, add CAN_MANAGE for 'group_name: users' permission to your bundle configuration. If the deployment should be restricted, move it to a restricted folder such as /Workspace/Users/.", }) }