#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
Tag: ai
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
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?
