attempt to fix secret client
All checks were successful
build / build (push) Successful in 40s

This commit is contained in:
Nick Seguin 2024-02-25 19:56:49 -06:00
parent 1c984859cb
commit 8bcba134f1
Signed by: nseguin
GPG key ID: 68C99FA84079021D

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();