Skip to content

Commit

Permalink
Merge pull request #3066 from akhilmhdh/fix/secret-list-plain
Browse files Browse the repository at this point in the history
Resolved list secret plain to have key as well
  • Loading branch information
maidul98 authored Jan 29, 2025
2 parents aac3c35 + 8759944 commit 0952114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/packages/cmd/secrets.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ var secretsCmd = &cobra.Command{

if plainOutput {
for _, secret := range secrets {
fmt.Println(secret.Value)
fmt.Println(fmt.Sprintf("%s=%s", secret.Key, secret.Value))
}
} else {
visualize.PrintAllSecretDetails(secrets)
Expand Down

0 comments on commit 0952114

Please sign in to comment.