WTH is AKS Automatic?

WTH is AKS Automatic?

Back at Build, Microsoft announced a new feature for running Kubernetes in Azure: AKS Automatic. This feature aims to simplify and make using Kubernetes in Azure less overwhelming. Let’s look at this service and see how it works and whether it will be useful for you. What is AKS Automatic AKS Automatic is an extension to the existing AKS service. When you deploy an AKS cluster, you get a control plane instance and then several worker nodes to run your pods.
Connect To VMs Securetly With Azure Bastion For Free

Connect To VMs Securetly With Azure Bastion For Free

If you’re running VMs in Azure, you will usually need to either RDP or SSH to the VM to resolve issues, install software or perform other administrative tasks. You can do this by opening the inbound port on your NSG and connecting directly to your VM. This will work, but leaving that port open invites brute-force attacks to compromise your VMs. Cloud services are an easy target for attackers looking for open ports, and it’s not uncommon to see attempts at brute force attacks within hours of a VM being deployed with an open port.
It's Finally Possible To Hibernate Azure VMs

It's Finally Possible To Hibernate Azure VMs

Most VM-based workloads in Azure are either running 24/7 or are scaled up and down dynamically as load changes. However, there are a class of workloads that fall in between these two scenarios, where you are running machines for reasonable periods, but there are periods where they are not in use and you would like to be able to turn them off during that period, but retaining state is a problem.
Create Entra ID Resources With Bicep

Create Entra ID Resources With Bicep

Ever since the release of ARM, and now Bicep, there has been a glaring omission from what we can create with this infrastructure as code languages - Entra ID (formally Azure AD) resources. There was an obvious reason for this, as Entra ID resources are created using the Graph API, which is a completely separate API from ARM. This has meant that we’ve had to resort to other methods for creating Entra ID resources as part of our deployments, things like deployment scripts or separate tasks in a pipeline.
Adding Delays to your Pulumi IaC with Pulumi Time.Sleep

Adding Delays to your Pulumi IaC with Pulumi Time.Sleep

When creating Infrastructure as Code, most IaC languages create dependencies between resources so that resources are created in the correct order, and we wait for a resource to complete creation before we start creating a resource that depends on it. A lot of the time this is handled automatically, but you can also add explicit dependencies as well. However, sometimes these dependencies don’t do the job. Sometimes a resource will be complete, at least as far as the IaC is concerned, but it’s not actually ready in the cloud provider.
Azure API Management v2 Explained

Azure API Management v2 Explained

This week Microsoft announced the GA of the new “v2” SKUs for Azure API Manager, these offer updated versions of the basic and standard SKUs, with some new features. Let’s look at the difference between the v1 and v2 SKUs, and whether you would want to use them. Improvements in the v2 SKU The v2 SKUs are mainly intended to improve on the v1 SKU and to bring in some features that previously had only been present in the Premium tier, which locked them behind an expensive monthly cost.
Azure Spring Clean: Leveraging Azure Copilot To Better Manage Your Tenant

Azure Spring Clean: Leveraging Azure Copilot To Better Manage Your Tenant

It’s time for the Azure Spring Clean. The annual event is organised by Joe Carlyle and Thomas Thornton to encourage you to look at your Azure subscriptions and see how you could manage it better. In my contribution for this year, we will look at how you can leverage Azure Copilot to manage your Azure Tenants better. What Is Azure Copilot Azure Copilot is Microsoft’s AI assistant, but it is tuned to work with Azure.
How To Run Deployment Scripts On A Virtual Network

How To Run Deployment Scripts On A Virtual Network

Deployment scripts are a feature of Bicep (and ARM templates) that allow you run either Azure PowerShell or Azure CLI scripts as part of your infrastructure as code deployment. This provides a means to do things in your deployment that Bicep can’t do natively. You’ll often hear this referred to as an “escape hatch”. If you can write it in Azure PowerShell or CLI (or any other PowerShell module if you download it), then you can do it in your deployment script.