From 5c9ccc9c310991b4121874cf4624c78d3e749e6b Mon Sep 17 00:00:00 2001 From: Michal Baumgartner Date: Mon, 9 Dec 2024 20:58:51 +0100 Subject: [PATCH] Fix typo in Vault client --- internal/clients/vault.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/clients/vault.go b/internal/clients/vault.go index 3c69ac2..5029e98 100644 --- a/internal/clients/vault.go +++ b/internal/clients/vault.go @@ -138,7 +138,7 @@ func TerraformSetupBuilder(tfProvider *schema.Provider) terraform.SetupFn { } return ps, errors.Wrap( configureNoForkVaultClient(ctx, &ps, *tfProvider), - "failed to configure the no-fork GCP client", + "failed to configure the no-fork Vault client", ) } }