G-Cloud
gsutil ls > buckets.txt
while read line; do gsutil ls $line; done < buckets.txtfor i in $(gcloud iam service-accounts list --format="table[no-heading](email)"); do
echo Looking for keys for $i:
gcloud iam service-accounts keys list --iam-account $i
donegcloud container clusters list
gcloud container clusters get-credentials <CLUSTER_NAME> --region <REGION>
kubectl cluster-infogcloud compute firewall-rules list | tee enum_firewall_rules.txtLast updated