Explicit warning regarding volume secrets
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
709a08cfe8
commit
7f966b504b
1 changed files with 3 additions and 1 deletions
|
|
@ -263,7 +263,9 @@ export const configExportController = new Hono()
|
|||
backupSchedulesRaw, scheduleNotifications, volumeMap, repoMap, notificationMap, params
|
||||
);
|
||||
|
||||
// TODO: Volumes will have encrypted secrets (e.g., SMB/NFS credentials) in a future PR
|
||||
// WARNING: As of now, volume exports may include sensitive data (e.g., SMB/NFS credentials) in cleartext.
|
||||
// This is a known security limitation. Handle exported configuration files with care.
|
||||
// Future PRs will implement encryption for these secrets.
|
||||
const [exportVolumes, exportRepositories, exportNotifications] = await Promise.all([
|
||||
exportEntities(volumes, params),
|
||||
exportEntities(repositories, params),
|
||||
|
|
|
|||
Loading…
Reference in a new issue