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 DevOps Terraform Task
Azure DevOps Terraform Task
Blog Posts

Introduction As development teams implement more and more Infrastructure as Code (IaC) leveraging Azure DevOps(ADO) there is a need for to ADO tasks that integrate easily and help improve the software development process. This post will specifically focus on the Azure DevOps Terraform Task The Problem With growth in popularity on Azure DevOps Microsoft Hosted Agents we need… READ MORE

Manage your releases by environment using Azure DevOps YAML templates
Manage your releases by environment using Azure DevOps YAML templates
Blog Posts

Use YAML to define the releases of your environments When setting up continuous integration (CI) and continuous delivery (CD) you always need to manage different environments for your project. Depending on your needs you will have at least 3 environments to drive your project correctly,for instance: Development Staging Production The development (Dev) environment will be… READ MORE

8 things to look out for in your Azure AD
8 things to look out for in your Azure AD
Blog Posts

If you´re using Azure Active Directory (Azure AD) (which of course is a pre-requisite to run Microsoft 365 at all, this blog post is for you! Here I´ll list my “Top 8” when it comes to security related issues you need to keep under close guard! Worst case scenario is of course that a Threat… 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

Take the Stage @ ESPC22
Take the Stage @ ESPC22
Blog Posts

The European SharePoint, Office 365 and Azure Conference returns to an in-person event this year, Nov 28 – Dec 1 in the beautiful city of Copenhagen, and we are delighted to announce our Call for Speakers is now open. SUBMIT TO SPEAK If you have an interesting story to tell and expertise to share, we invite you to submit… READ MORE

Migrating Enterprise Applications to Azure Cloud Native
Migrating Enterprise Applications to Azure Cloud Native
Webinars

In this webinar Mihai Tataran from Avaelgo in Romania explores the methodologies (based on Well Architected Framework and Cloud Native) and technologies (PaaS, Microservices, AKS, etc.) used nowadays to migrate Enterprise Applications to Azure. The focus will be on WHY to move to Azure and what to gain from this move and based on those… READ MORE

OMIGOD: A VULNERABILITIES WITHIN AZURE VM MANAGEMENT EXTENSIONS
OMIGOD: A VULNERABILITIES WITHIN AZURE VM MANAGEMENT EXTENSIONS
Blog Posts

A couple of weeks ago a new case exploded around Azure virtual machines (Azure VM), and on-premises as well, and specifically those Linux with Open Management Infrastructures on board. In deep there are three Elevation of Privilege (EoP) vulnerabilities (CVE-2021-38645, CVE-2021-38649, CVE-2021-38648) and one unauthenticated Remote Code Execution (RCE) vulnerability (CVE-2021-38647). Open Management Infrastructure (OMI) is an open-source Web-Based Enterprise… READ MORE

Infinite Scrolling in Blazor
Infinite Scrolling in Blazor
Blog Posts

Orginal blog post by Gérald Barré can be found here Infinite scrolling is a way to automatically loads data when you reach the end of the page. It allows you to continue scrolling indefinitely. The method is often used in social media feeds or blogs. In this post, we’ll create a Blazor component that you… READ MORE

Azure Synapse Analytics Queries #6 Monitor Data Skew
Azure Synapse Analytics Queries #6 Monitor Data Skew
Blog Posts

Data skew is one of the most important considerations when working with Azure Synapse Analytics. Data skew is the uneven distribution of data across data storage distributions in SQL Dedicated Pools. In this post, you’ll learn how to monitor the data skew in your Azure Synapse Analytics SQL Pool.  About Data Skew  To begin, data skew is when your data is not distributed correctly across different… READ MORE