witoff / gcp-unused-resources

Find unused resources in GCP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GCP Resources

Find GCP resources that are likely unused.

1. Create View-Only Credentials

# Create a new service account
export PROJECT_ID="..."
IAM_ID=$(
gcloud iam service-accounts create ${unused-resources} \
  --display-name "Unused Resources" \
  --format 'value(email)'
)

# Authorize the new account to view-only
gcloud projects add-iam-policy-binding ${PROJECT_ID} \
  --member ${IAM_ID}
  --role "roles/viewer"

# Download a keyfile
gcloud iam service-accounts keys create keyfile.json \
  --iam-account $IAM_ID

2. Scan For Resources

node unused-networking.js

Resources

About

Find unused resources in GCP


Languages

Language:JavaScript 100.0%