From 5b18448a1f58e6bb5cc072f600cef88636da643d Mon Sep 17 00:00:00 2001 From: Lukas <32310269+LukasLJL@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:42:53 +0200 Subject: [PATCH] Fixed wrong provider name Signed-off-by: Lukas Huida --- internal/clients/keycloak.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/clients/keycloak.go b/internal/clients/keycloak.go index 21e8d37..2d33107 100644 --- a/internal/clients/keycloak.go +++ b/internal/clients/keycloak.go @@ -113,7 +113,7 @@ func configureNoForkKeycloakClient(ctx context.Context, ps *terraform.Setup) err diags := cb.Configure(ctx, terraformSDK.NewResourceConfigRaw(ps.Configuration)) if diags.HasError() { - return fmt.Errorf("failed to configure the Grafana provider: %v", diags) + return fmt.Errorf("failed to configure the Keycloak provider: %v", diags) } ps.Meta = cb.Meta()