fix: added username/password to collect params

This commit is contained in:
David Allen 2025-03-25 14:15:39 -06:00
parent d4d0bc8a2c
commit 3a1fc3fe38
Signed by: towk
GPG key ID: 0430CDBE22619155
2 changed files with 4 additions and 2 deletions

View file

@ -68,6 +68,8 @@ var CollectCmd = &cobra.Command{
ForceUpdate: forceUpdate,
AccessToken: accessToken,
SecretsFile: secretsFile,
Username: username,
Password: password,
}
// show all of the 'collect' parameters being set from CLI if verbose

View file

@ -219,8 +219,8 @@ var secretsListCmd = &cobra.Command{
os.Exit(1)
}
for key, value := range secrets {
fmt.Printf("%s: %s\n", key, value)
for key := range secrets {
fmt.Printf("%s\n", key)
}
},
}