ad gcloud scripts

This commit is contained in:
Mia Steinkirch 2018-06-17 21:53:40 -07:00 committed by GitHub
parent ce3251b9fe
commit 0402a432cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#!/bin/bash
for x in $(gcloud projects list | tail -n +2 | awk '{ print $1}');
do
gcloud sql instances list --project $x
done