Skip to content

Instantly share code, notes, and snippets.

@scottsauber
Last active April 17, 2022 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottsauber/731a118109c99923b3ec11f9a10bb4d5 to your computer and use it in GitHub Desktop.
Save scottsauber/731a118109c99923b3ec11f9a10bb4d5 to your computer and use it in GitHub Desktop.
builder.Configuration.AddAzureKeyVault(
new Uri($"https://azurekeyvaultperformance-{builder.Environment.EnvironmentName}.vault.azure.net/"),
new DefaultAzureCredential(new DefaultAzureCredentialOptions
{
ExcludeEnvironmentCredential = true,
ExcludeInteractiveBrowserCredential = true,
ExcludeAzurePowerShellCredential = true,
ExcludeSharedTokenCacheCredential = true,
ExcludeVisualStudioCodeCredential = true,
ExcludeVisualStudioCredential = true,
ExcludeAzureCliCredential = !builder.Environment.IsEnvironment("Local"),
ExcludeManagedIdentityCredential = builder.Environment.IsEnvironment("Local"),
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment