From f76ad58e9af0894458c572e711ee3cab910a085d Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Thu, 11 Jan 2024 23:43:00 +0400 Subject: [PATCH] Renamed --- client/secret-operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/secret-operations.go b/client/secret-operations.go index b11f59c..de832cf 100644 --- a/client/secret-operations.go +++ b/client/secret-operations.go @@ -53,7 +53,7 @@ func (client Client) GetPlainTextSecretsViaServiceToken(secretFolderPath string, return plainTextSecrets, &serviceTokenDetails, nil } -func (client Client) GetRawSecretsViaMachineIdentity(secretFolderPath string, envSlug string, workspaceId string) ([]RawV3Secret, error) { +func (client Client) GetRawSecrets(secretFolderPath string, envSlug string, workspaceId string) ([]RawV3Secret, error) { if client.Config.ClientId == "" || client.Config.ClientSecret == "" { return nil, fmt.Errorf("client ID and client secret must be defined to fetch secrets with machine identity") }