fix: added username/password to collect params

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

View file

@ -72,6 +72,8 @@ var CollectCmd = &cobra.Command{
ForceUpdate: forceUpdate, ForceUpdate: forceUpdate,
AccessToken: accessToken, AccessToken: accessToken,
SecretsFile: secretsFile, SecretsFile: secretsFile,
Username: username,
Password: password,
} }
// show all of the 'collect' parameters being set from CLI if verbose // 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) os.Exit(1)
} }
for key, value := range secrets { for key := range secrets {
fmt.Printf("%s: %s\n", key, value) fmt.Printf("%s\n", key)
} }
}, },
} }