Created
July 17, 2026 16:28
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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