我有一个Azure Web作业(.NET Core 2.2
),它会在启动时从配置中读取几个设置,如下所示:
var builder = new HostBuilder()
.UseEnvironment(Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT"))
.ConfigureWebJobs()
.ConfigureAppConfiguration((hostContext, configApp) =>
{
configApp.AddEnvironmentVariables();
configApp.AddJsonFile("appsettings.json", optional: false);
})
.ConfigureLogging((hostingContext, logging) =>
{
logging.AddConsole();
var instrumentationKey = hostingContext.Configuration["APPINSIGHTS_INSTRUMENTATIONKEY"];
if (!string.IsNullOrEmpty(instrumentationKey))
{
Console.Writeline(instrumentationKey); // <- this always outputs key from appsettings.json, not from Azure Settings
logging.AddApplicationInsights(instrumentationKey);
}
})
.UseConsoleLifetime();
如您所见,appsettings.json
文件应该具有一个APPINSIGHTS_INSTRUMENTATIONKEY
密钥,并且在开发环境中可以很好地读取它。
现在,对于生产而言,我想通过在Azure应用程序设置Web界面中添加具有相同键的设置来覆盖此APPINSIGHTS_INSTRUMENTATIONKEY
键。
但是,当我将Webjob部署到Azure时,它仍然具有来自appsettings.json
的旧应用洞察密钥。为了强制我的Web作业使用Azure应用程序设置中的替代键,我必须从appsettings.json
中删除应用程序见解键。
我的网络作业是否可以使用Azure应用程序设置而不必从appsettings.json
删除密钥?
答案 0 :(得分:2)
问题在于Azure App设置是通过环境变量发送的;并且,您首先要加载环境变量,然后使用appsettings.json覆盖:
.ConfigureAppConfiguration((hostContext, configApp) =>
{
configApp.AddEnvironmentVariables();
configApp.AddJsonFile("appsettings.json", optional: false);
})
将其反转为
.ConfigureAppConfiguration((hostContext, configApp) =>
{
configApp.AddJsonFile("appsettings.json", optional: false);
configApp.AddEnvironmentVariables();
})
它将首先加载您的appsettings.json,然后使用环境变量覆盖。