Manage Azure via PowerShell #3: Get-AzPublicFacingResources

#Requires -Version 7.0 #Requires -Modules Az.Accounts, Az.ResourceGraph <# .SYNOPSIS Lists Azure resources that are exposed to the public internet across every accessible subscription. .DESCRIPTION Uses Azure Resource Graph to find: - Public IP addresses (and what they're attached to) - Storage accounts allowing public network access - App Services / Function Apps with public access … Continue reading Manage Azure via PowerShell #3: Get-AzPublicFacingResources

Manage Azure via PowerShell #2: Get-AzResourceGroupSummary

#Requires -Version 7.0 #Requires -Modules Az.Accounts, Az.ResourceGraph <# .SYNOPSIS Summarises every resource group across all accessible subscriptions: resource counts, top resource types, and a best-effort owner attribution. .DESCRIPTION Uses Azure Resource Graph to: 1. List all resource groups (including empty ones). 2. Count resources per RG and identify the top 3 resource types. 3. Read … Continue reading Manage Azure via PowerShell #2: Get-AzResourceGroupSummary

Manage Azure via PowerShell #1: Get-AzVmInventory

#Requires -Version 7.0 #Requires -Modules Az.Accounts, Az.Compute <# .SYNOPSIS Lists all virtual machines across every subscription the current account can access. .DESCRIPTION Iterates through all subscriptions in the active tenant, collects VM details (name, resource group, location, size, OS, power state, tags), and returns them as objects suitable for piping or formatting. .EXAMPLE ./Get-AzVmInventory.ps1 Lists … Continue reading Manage Azure via PowerShell #1: Get-AzVmInventory

Azure Digital Twin Series #1: What is Azure Digital Twins?

You’ve probably heard the term “Digital Twin” thrown around—sometimes like it’s tech magic, sometimes like it’s just another buzzword. I promise there’s nothing mystical or hollow here. It’s a really clever concept rooted in practical tech—and one you can actually implement without needing a PhD in quantum mechanics. Imagine This Real-World Scenario Say you manage … Continue reading Azure Digital Twin Series #1: What is Azure Digital Twins?