Skip to content

Instantly share code, notes, and snippets.

@timburks
Created July 17, 2026 16:28
Show Gist options
  • Select an option

  • Save timburks/a05f6cab7bd75644cd47d148cef1fa8a to your computer and use it in GitHub Desktop.

Select an option

Save timburks/a05f6cab7bd75644cd47d148cef1fa8a to your computer and use it in GitHub Desktop.
Check your Google Cloud account for things that can spend your money: API keys and service accounts
#!/bin/bash
for project in $(gcloud projects list --format="value(projectId)"); do
echo "Checking Project: $project";
gcloud services api-keys list --project="$project";
gcloud iam service-accounts list --project="$project";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment