From 1850a0595bd22c35355850f4d260f25a8c79c5e2 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 29 Oct 2019 01:48:50 +0100 Subject: [PATCH] cli/command/secret: G101: Potential hardcoded credentials (gosec) Signed-off-by: Sebastiaan van Stijn --- cli/command/secret/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command/secret/formatter.go b/cli/command/secret/formatter.go index 24a56bda62..9102f28856 100644 --- a/cli/command/secret/formatter.go +++ b/cli/command/secret/formatter.go @@ -13,7 +13,7 @@ import ( ) const ( - defaultSecretTableFormat = "table {{.ID}}\t{{.Name}}\t{{.Driver}}\t{{.CreatedAt}}\t{{.UpdatedAt}}" + defaultSecretTableFormat = "table {{.ID}}\t{{.Name}}\t{{.Driver}}\t{{.CreatedAt}}\t{{.UpdatedAt}}" // #nosec G101 secretIDHeader = "ID" secretCreatedHeader = "CREATED" secretUpdatedHeader = "UPDATED"