From be61083de17b8482d2ee12f5d9d0fcea91d68ebb Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:25:31 +0100 Subject: [PATCH] Ignore deprecation in user agent --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 2749f1a82..305294634 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -81,7 +81,7 @@ func ConfigureProvider(terraformVersion *string) schema.ConfigureContextFunc { // userAgent computes the desired User-Agent header for the *management.Management client. func userAgent(terraformVersion *string) string { sdkVersion := auth0.Version - terraformSDKVersion := meta.SDKVersionString() + terraformSDKVersion := meta.SDKVersionString() //nolint:staticcheck userAgent := fmt.Sprintf( "%s/%s (Go-Auth0-SDK/%s; Terraform-SDK/%s; Terraform/%s)",