From da2baf0faf6cfc9031f26dc9e4f6466fd72a2149 Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Fri, 18 Jun 2021 09:54:44 +0200 Subject: [PATCH] provider: matching the behaviour of AAD --- azurerm/internal/provider/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azurerm/internal/provider/provider.go b/azurerm/internal/provider/provider.go index 7f8b04b30833..7034a751a3f9 100644 --- a/azurerm/internal/provider/provider.go +++ b/azurerm/internal/provider/provider.go @@ -323,7 +323,7 @@ func providerConfigure(p *schema.Provider) schema.ConfigureContextFunc { } stopCtx, ok := schema.StopContext(ctx) //nolint:SA1019 - if ok { + if !ok { stopCtx = ctx }