вы можете использовать function.json, чтобы иметь ваши пары ключей конфигурации.
например:
System.Environment.GetEnvironmentVariable(name, EnvironmentVariableTarget.Process);
и в function.json вы можете сделать так:
"mykey": "myvalue"
{
"generatedBy": "Microsoft.NET.Sdk.Functions-1.0.24",
"configurationSource": "attributes",
"bindings": [
{
"direction":"in",
"type": "timerTrigger",
"useMonitor": true,
"runOnStartup": false,
"name": "myTimer",
"mykey": "myvalue"
}
],
"disabled": false,
"scriptFile": "../bin/**.dll",
"entryPoint": "**.Run"
}