Tag: Azure

Taking Your Azure Active Directory Security to the Next Level
Taking Your Azure Active Directory Security to the Next Level
Blog Posts

What if I told you just using multi-factor authentication (MFA) wasn’t enough anymore? The Lapsus$ hacking group, who were at least partially made up of a group of teenagers in the UK, took a very targeted hacking approach. They used password stuffing to try to breach the password credentials of power users within organizations they were targeting.… 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 AD Workload Federation anywhere?
Azure AD Workload Federation anywhere?
Blog Posts

I decided to write an post into creation of Azure AD Workload Identity using the option ’Workloads running in compute platforms outside of Azure’ covered @ MS DOCS. The ultimate simplification of workload federation is using Azure AD Client Credentials flow with client private key signed token, where metadata is provided to Azure AD via Discovery URL,… READ MORE

AKS | Remove the Defender Profile from an AKS Cluster & Release Tracker
AKS | Remove the Defender Profile from an AKS Cluster & Release Tracker
Blog Posts

Hi! In this article, I will show you how you can remove the Defender for Containers profile from an existing AKS Cluster. az login az account set –subscription <subscription-id> az aks update –disable-defender –resource-group <your-resource-group> –name <your-cluster-name> To verify that the profile was successfully removed, run the following command: kubectl get pods -n azuredefender AKS… READ MORE

Create an Azure Monitor action group with Azure PowerShell
Create an Azure Monitor action group with Azure PowerShell
Blog Posts

Azure Monitor, Microsoft’s built-in monitoring service, allows you to monitor and gain more visibility into the state of your resources from a single place. In this way this service can help you to quickly find and fix problems. To notify users that an alert has been triggered, Azure Monitor and also other services like Azure Service Health and Azure Advisor, use action groups. Action… 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

Building your Azure Policies – Part 1
Building your Azure Policies – Part 1
Blog Posts

Azure Policy is a way of enforcing standards and guardrails and assessing resource compliance. In Azure, the compliance dashboard offers an aggregated view to validate the state of the platform with additional options to see the resources that are not compliant. Policy An Azure Policy itself evaluates resources within Azure based on the rules you… READ MORE