Tag: Azure

Azure - Provisioning an Azure Container Registry using Terraform
Azure – Provisioning an Azure Container Registry using Terraform
Blog Posts

1. Introduction The usage of Azure resources, as the Azure Kubernetes Service or the Azure Container Registry, etc. enable a transition or an extension of the workbench to the Azure cloud. Therefore it would be great if you can provision such resources in the Azure Portal and it would be even more great if you could do that in an automated way. An option… READ MORE

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

Azure Service Bus Topic Filters
Azure Service Bus Topic Filters
Blog Posts

In this post, let’s have a look at a nice feature that comes with Azure Service Bus Topics/Subscriptions and that is Topic Filters.  Usually, when we publish a message under a Topic, all its subscribers will receive a copy of the message. But sometimes, we want to route specific messages only to a specific subscription based… 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