We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e1d2b commit c55ff40Copy full SHA for c55ff40
WMS.WebUI/WMS.WebUI/Program.cs
@@ -1,3 +1,4 @@
1
+using Azure.Identity;
2
using Microsoft.AspNetCore.Authentication.JwtBearer;
3
using Microsoft.IdentityModel.Tokens;
4
using Serilog;
@@ -71,9 +72,9 @@
71
72
73
if (app.Environment.IsProduction())
74
{
- //builder.Configuration.AddAzureKeyVault(
75
- // new Uri("https://wms-webui-configurations.vault.azure.net/"),
76
- // new DefaultAzureCredential());
+ builder.Configuration.AddAzureKeyVault(
+ new Uri("https://wms-webui-configurations.vault.azure.net/"),
77
+ new DefaultAzureCredential());
78
79
//builder.Host.UseSerilog((context, configuration) => configuration
80
// .MinimumLevel.Debug()
0 commit comments