I have an Azure function v3 in .NET core 3.1 Function works fine locally. Here is the local.settings.json:
{
"IsEncrypted": false,
"Values": {
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"AzureWebJobsStorage": "UseDevelopmentStorage=true"
},
"Foo": {
"Bar": {
"test1": true,
"test2": false
}
}
}
I need to write configuration for nested object Foo:Bar:test1 in Azure function configuration.
How to express this nested object there?