This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | |
// The following two I'm explicitly setting to false but they could be omitted because false is the default | |
ExcludeAzureCliCredential = false, | |
ExcludeManagedIdentityCredential = false, | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment