From a1ba80a9ae599e3829a09d6d8318b106806181a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C5=9Eirin=20Usanmaz?= Date: Fri, 6 Sep 2024 13:20:55 +0300 Subject: [PATCH] new version --- cmd/root.go | 2 +- internal/consul/client.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 1929032..1af3b60 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -const version = "1.2.4" +const version = "1.2.5" var ( consulAddr string diff --git a/internal/consul/client.go b/internal/consul/client.go index a185fa7..da8a072 100644 --- a/internal/consul/client.go +++ b/internal/consul/client.go @@ -53,7 +53,7 @@ func GetKV(client *api.Client, key string, retryLimit, rateLimit int, ticker *ti } func CheckForSensitiveData(filePath string, content string) { - sensitiveKeys := []string{"Password", "Token", "Key"} + sensitiveKeys := []string{"Password", "Token"} var problems []string for _, key := range sensitiveKeys {