turbot/steampipe-mod-azure-insights

Dashboard: Azure Kubernetes Cluster Inventory Report

This report answers the following questions:

  • How many Kubernetes clusters are there across my subscriptions?
  • What is the provisioning state and power state of each cluster?
  • Which Kubernetes versions are being used?
  • Which clusters have RBAC and pod security policies enabled?
  • What SKUs are being used?
  • How many agent pools can each cluster support?
  • How are clusters distributed across subscriptions, resource groups, and regions?

The inventory report includes:

  • Total count of Kubernetes clusters
  • Detailed list of all clusters with:
    • Cluster name and state information
    • Kubernetes version and DNS configuration
    • Security features (RBAC, Pod Security Policy)
    • Capacity information (agent pools)
    • SKU and power state
    • Resource organization (subscription, resource group, region)
    • Associated tags
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 Kubernetes Cluster Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

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

Tags