Category Azure functions
Azure Functions Configuration and Secrets Management
This post shows how to configure Azure Function projects so that no secrets are required in the local.settings.json or in the code. Secrets for the project are saved in the user secrets of the project, or in the app settings of the deployment. The deployment should/can use Azure Key Vault for the secrets and not […]
Using External Inputs in Azure Durable functions
This post shows how to implement an Azure Durable function flow with an external HTTP API input. The flow is started using a HTTP request, runs an activity, waits for the external input from a HTTP API which could be any Azure function input and then runs a second activity. The application is implemented using […]
Using Azure Service Bus with restricted access
Azure Service Bus provides many ways to setup different access levels for all types of things like the bus itself, queues, topics or subscriptions. In this post some of the ways to configure the different access levels for a queue sender will be shown. In this demo we want to allow only send access rights […]
Using an Azure Service Bus Topic Subscription in an Azure Function
This post shows how to consume Azure service bus topic subscriptions in an Azure function. Code: https://github.com/damienbod/AspNetCoreServiceBus Posts in this series: History Processing the Azure Service Bus Messages in an Azure Function Setting this up could not be easier. In Visual Studio, create a new Azure function project, and then create a new Azure function […]
