fix: clarify that override is temporary

This commit is contained in:
Devon Bautista 2025-04-17 09:47:29 -06:00 committed by David Allen
parent ed9db6d943
commit 979841d762
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -83,10 +83,10 @@ var CollectCmd = &cobra.Command{
// flags is passed. The expectation is that if the flag is specified
// on the command line, it should be used.
if username != "" {
log.Info().Msg("--username passed, overriding all usernames with value")
log.Info().Msg("--username passed, temporarily overriding all usernames from secret store with value")
}
if password != "" {
log.Info().Msg("--password passed, overriding all passwords with value")
log.Info().Msg("--password passed, temporarily overriding all passwords from secret store with value")
}
switch s := store.(type) {
case *secrets.StaticStore: