Tag: Azure

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

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