Tag: Azure

Cloud Security Handbook
Cloud Security Handbook
Ebooks

This chapter will review the importance of having a hybrid cloud strategy to allow organisations to adopt cloud services and hybrid solutions. It will also explore the various IAM solutions from AWS, Azure and GCP, which allow organisation to have a central directory service so that they can keep a single identity for each end… 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

Connecting Azure SQL Server with Azure Machine Learning
Connecting Azure SQL Server with Azure Machine Learning
Blog Posts

Accessing data in different data sources is one of the main tasks in machine learning model development life cycle. Let’s discuss one of the most common data accessing scenarios. Scenario : We have to set of relational data points stored in a Azure SQL server to develop a machine learning model using Azure Machine Learning.… READ MORE

Azure Artifacts - External Authentication
Azure Artifacts – External Authentication
Blog Posts

Hello everyone, These days I came across an interesting situation that took me a few hours to resolve and I will document it here for future reference and to help others. In one of the projects I work on we have some packages in a private feed in Azure Artifacts , when we use Azure Devops pipelines… READ MORE