fix: add warning for long secret names #359

Merged
decentral1se merged 14 commits from rix/abra:add-secret-length-linting into main 2024-04-06 21:41:37 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2abb7264b8 - Show all commits

View File

@ -270,7 +270,7 @@ func ensureSecretLengths(secrets map[string]string, domainName string, sanitised
for secretName := range secrets {
if len(secretName)+domainAndFormatLength > config.MAX_DOCKER_SECRET_LENGTH {
return fmt.Errorf("%s is too long (> %d chars when combined with %s)", secretName, config.MAX_DOCKER_SECRET_LENGTH, sanitisedAppName)
return fmt.Errorf("secret %s is too long (> %d chars when combined with %s)", secretName, config.MAX_DOCKER_SECRET_LENGTH, sanitisedAppName)
}
}
decentral1se marked this conversation as resolved Outdated

nitpick: drop extra newline?

nitpick: drop extra newline?
Outdated
Review

Think I've got this one now but let me know if I misinterpreted which line you were talking about : )

Think I've got this one now but let me know if I misinterpreted which line you were talking about : )