Skip to content

Commit 5e8381e

Browse files
authored
Merge pull request #26486 from hashicorp/jbardin/backend-arm-client
add missing Context argument
2 parents 01ff7e0 + 7065281 commit 5e8381e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/remote-state/azure/backend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ func (b *Backend) configure(ctx context.Context) error {
239239
UseMsi: data.Get("use_msi").(bool),
240240
}
241241

242-
armClient, err := buildArmClient(config)
242+
armClient, err := buildArmClient(context.TODO(), config)
243243
if err != nil {
244244
return err
245245
}

0 commit comments

Comments
 (0)