skip to Main Content

Azure queue trigger with custom connection name

I have an Azure functions application (.net8, isolated model). There is a queue trigger working pretty good with internal application storage. It looks like this: [Function(nameof(InnerStorageTrigger))] public void InnerStorageTrigger([QueueTrigger("test-queue-inner")] QueueMessage message) { _logger.LogInformation($"Inner message: {message.MessageText}"); } But I also need…

VIEW QUESTION

Azure – az Cmdlet not available despite Az Module listing as being installed

so I'm following along the Microsoft Azure Guide for developing a simply Python function for Azure: https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-cli-python?pivots=python-mode-decorators&tabs=windows%2Cbash%2Cazure-cli%2Cbrowser#configure-your-local-environment For this, the Azure PowerShell shall be installed (or the Azure CLI): https://learn.microsoft.com/en-us/powershell/azure/install-azps-windows?view=azps-12.1.0&tabs=windowspowershell&pivots=windows-psgallery So I've installed the Azure Powershell via the PowerShell Gallery,…

VIEW QUESTION

Azure Function Blob Storage Monitor

I've been having some issues with my Azure Function that monitors a blob storage. I've followed the tutorial here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-event-grid-blob-trigger?pivots=programming-language-csharp I have my Azure Function setup, my event grid webhook setup and my blob storage ready. In application insights, I…

VIEW QUESTION
Back To Top
Search