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
2 changes: 1 addition & 1 deletion src/Cli/func/Common/KeyVaultReferencesManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal class KeyVaultReferencesManager
private const string VaultUriSuffix = "vault.azure.net";
private static readonly Regex _basicKeyVaultReferenceRegex = new Regex(@"^@Microsoft\.KeyVault\((?<ReferenceString>.*)\)$", RegexOptions.Compiled);
private readonly ConcurrentDictionary<string, SecretClient> _clients = new ConcurrentDictionary<string, SecretClient>();
private readonly TokenCredential _credential = new DefaultAzureCredential();
private readonly TokenCredential _credential = new DefaultAzureCredential(); // CodeQL [SM05137] This is never deployed to production, only used in CLI context in a local dev environment.

public void ResolveKeyVaultReferences(IDictionary<string, string> settings)
{
Expand Down