Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public async Task LoadIfNeededAsync(CredentialDescription credentialDescription,
};
}

// CodeQL [SM05137] intentional: Using default credential because user may configure any of the supported auth methods. This method is also not used always as the resulting retrieved keys are cached.
DefaultAzureCredential credential = new(options);
CertificateClient certificateClient = new(keyVaultUri, credential);
SecretClient secretClient = new(keyVaultUri, credential);
Expand Down
Loading