fix secret client #5

Merged
nseguin merged 3 commits from dev into main 2024-02-25 19:57:59 -06:00

View file

@ -45,7 +45,7 @@ if (builder.Environment.IsStaging() || builder.Environment.IsProduction())
}
a.Connect(connectionString)
.ConfigureKeyVault(kv => kv.SetCredential(new DefaultAzureCredential()));
.ConfigureKeyVault(kv => kv.SetCredential(new EnvironmentCredential()));
});
}
else
@ -68,7 +68,6 @@ builder.Services.Configure<OpenIdConnectOptions>(
builder.Services.AddTransient<IContactService, ContactService>();
builder.Services.AddOptions<MailSettings>().BindConfiguration("Mail").ValidateDataAnnotations();
builder.Services.AddHttpLogging(
o =>
{
@ -86,8 +85,6 @@ if (app.Environment.IsDevelopment())
else
{
app.UseExceptionHandler("/Error", true);
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpLogging();