Category: Azure

According to Microsoft, Azure is an ever-expanding set of cloud services to help your organisation meet business challenges. It’s the freedom to build, manage, and deploy applications on a massive, global network using various tools and frameworks.

From DevOps to business analytics to the Internet of Things, Azure is designed to have users up and running quickly with a scalable, cost-effective solution that works with your existing investments.

This cloud computing service is a big part of Microsoft’s business, and it competes with similar services from Amazon and Google.

Therefore, our Azure Category is full of handy tips, tricks and advise. Check out some of the Step by Step blogs or learn with our eBooks, How To videos and Webinars.

Azure Functions Isolated Worker - Sending multiple messages
Azure Functions Isolated Worker – Sending multiple messages
Blog Posts

The new Azure Functions SDK for Isolated Worker (process) has been introduced around .NET 5. While it’s still in flux despite being GA-ed, it’s gaining more and more popularity. And yet, there are still some sharp edges you should be careful with and validate that everything you’re using with the older SDK, In-Process, is offered… READ MORE

Creating Azure Functions using VSCode Editor and Python
Creating Azure Functions using VSCode Editor and Python
Blog Posts

Azure Functions can be defined as the cloud services that are available on the Azure portal providing updated infrastructure and resources that are needed for running the applications. It is used to build web APIs, respond to database changes, process IoT streams, manage message queues, and more. In this article, we will explore how to… READ MORE

Azure Container Apps - Deployment with a customized Container Image and a Comparison to Azure Container Instances
Azure Container Apps – Deployment with a customized Container Image and a Comparison to Azure Container Instances
Blog Posts

The intention of this post is to create Azure Container Apps deployment and to explain how it differentiates to Azure Container Instances for this specific context 1. Introduction In this post, I’d like to show, how to create a deployment of an Azure Container App – using a customized Container Image, which is managed by an Azure Container Registry. To figure… READ MORE

Sending Per User Notifications using Azure Functions SignalR Service Output Binding
Sending Per User Notifications using Azure Functions SignalR Service Output Binding
Blog Posts

In this post, let’s have a look at how to send user Notifications using Azure Functions SignalR Service output binding. I already have an Azure SignalR Service and Azure Function setup. My client app is an Angular application. In my Azure Function, I have the Negotiate function as follows. public static class NegotiateFunction {     [FunctionName(FunctionNames.Negotiate)]     public static SignalRConnectionInfo Run(         [HttpTrigger(AuthorizationLevel.Function, “get”, “post”, Route = null)] HttpRequest request,         [SignalRConnectionInfo(             HubName = “%SignalR_HubName%”,             UserId = “{headers.x-application-user-id}”,             ConnectionStringSetting = “SignalR_ConnectionString”)] SignalRConnectionInfo connectionInfo)… READ MORE

How to Deploy to Azure with Least Privilege
How to Deploy to Azure with Least Privilege
Blog Posts

In this post we’ll walk through the steps you can take to give a Service Principal a role with “Least Privilege” in Azure. After reading this article you will have a very practical method that you can use over and over again. You will be able to create roles for your Service Principals that will… READ MORE