In encountered a startup issue in my Azure Function, but was lacking error details to properly troubleshoot it. Luckily I found a feature in Azure that can help you diagnose startup issues. In my case I encountered a KeyVault access issue. Since I was integrating with multiple KeyVaults in my function, it was a bit […]
Berichten met het label Azure Functions:
Deploy Azure Function V4 .NET 6 on Linux using Bicep
Since running Azure Functions on Linux can be cheaper than running on Windows and I had no particular need of running it on Windows, I tried deploying my Azure Function V4 built on .NET 6 via Bicep to an App Service on Linux. However this appeared to not be as straight forward as I thought […]
The type or namespace name ‘ServiceBus’ does not exist in the namespace ‘Microsoft.Azure’
I was trying to create an Azure Function with an NServicebus trigger, but kept receiving the error in the title on build. Since it took me some time figure out what was actually causing it, here what I discovered. So I started of creating a new Azure Function with Service Bus trigger in Visual Studio […]
Azure Functions – May not scale error – modified configuration
One of the things I love to add to my Azure Functions are environments specific app settings files. Anybody that has been working with ASP .NET Core will be familiar with them and in my opinion, they are great to store your non-secret environment-specific settings. Since Microsoft start supporting them easily in Azure Functions, I […]