turbot/steampipe-mod-gcp-insights

Dashboard: GCP IAM Service Account Inventory Report

This report answers the following questions:

  • How many service accounts are there across my projects?
  • What are the display names and descriptions of service accounts?
  • What are the email addresses associated with each service account?
  • Which service accounts are disabled?
  • What OAuth2 client IDs are associated with service accounts?
  • What are the unique IDs of service accounts?
  • How are service accounts distributed across projects and locations?
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-gcp-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select GCP IAM Service Account Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run gcp_insights.dashboard.iam_service_account_inventory_report --share

Queries

This dashboard uses the the following queries:
select
count(*) as "Service Accounts"
from
gcp_service_account;

Tags