turbot/steampipe-mod-azure-insights

Dashboard: Azure Compute Disk Inventory Report

Azure Compute Disk Inventory Report

This report answers the following questions:

  • How many managed disks do I have across all my subscriptions?
  • What is the total and average size of my managed disks?
  • How many disks are currently unattached and potentially unused?
  • What percentage of my disks are encrypted?
  • How are my disks distributed across different performance tiers (Standard, Premium, Ultra)?
  • Which regions have the highest concentration of disks?
  • Are there any disks with public network access enabled?
  • How many OS disks vs data disks do I have?
  • What is the provisioning state of my disks?
  • How are my disks organized across subscriptions and resource groups?
This dashboard contains 1 card and 1 table.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-azure-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select Azure Compute Disk Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run azure_insights.dashboard.compute_disk_inventory_report --share

Queries

This dashboard uses the the following queries:
select count(*) as "Disks" from azure_compute_disk;

Tags