A script to parse Org, Folder, Projects and graph them all together in a convenient Graphviz dot file.
To run it:
# First time only
gcloud auth login
bundle install
# Every time
ruby recurse_folders.rb
Tested on ruby versions 2.6.3p62 / 2.7.1p83 and by gem installing whats needed.
See this project developed by Google Professional Services. Definitely one step ahead of my repo (graphically):
I actually borrowed this awesome visualization (see in out
for latest values):
π² 824879804362 # 'palladi.us'
ββ π xpn-main (398198244705)
ββ π orgnode-palladi-us (704861684515)
ββ π 993609995477 (customers)
ββ π 571390668780 (dirimpettai di EURF)
ββ π 885056483479 (dev and test)
ββ π prova-123-dentro-palladi-us (237925736669)
ββ π palladius-eu (177178925177)
ββ π prova123-160016 (262470358174)
ββ π folder-test-prod (1025012666423)
ββ π folder-test-dev (351173986048)
ββ π 128544652663 (folderillo)
ββ π 887288965373 (prod stuff - for real)
ββ π gbanana-prod (626662139195)
ββ π 510416893777 (TFR Terraformed by Ricc)
ββ π 93350088776 (TF DEV)
ββ π 723110142384 (TF0b - titius)
ββ π 1026736501110 (TF1b - caius)
ββ π 802144187596 (TF2b - sempronius)
ββ π 99919748229 (TF PROD)
-
Currently uses gcloud to call APIs, so it's slower and more inefficient than it could. Consider this a proof of concept, easy to optimize.
-
If you have some tokens it might NOT work:
- gcloud config unset auth/authorization_token_file
- gcloud config configurations activate default
Consider making the script faster with a couple of tips:
-
Use APIs directly instead of gcloud (duh!)
-
Optimize API call logically. for instance, I could fetch ALL folders in an org with a single call (today impossible) or all project in an Org once I know N folders (I believe this is possible using filters - see below).
-
Smart filtering with gcloud: https://cloud.google.com/blog/products/gcp/filtering-and-formatting-fun-with
-
Get alll folders at once using this aPI. Funny enough, this API is so powerful it spans across multiple orgs, not sure how to restrict it :)
curl -H "Authorization: Bearer
gcloud auth print-access-token
" -X POST https://cloudresourcemanager.googleapis.com/v2/folders:search
- https://github.com/angstwad Paul Durivage (creator of gcp-org-hierarchy-viewer) for the graphics.
- My friend Daz for the script in
3rd-party/
which seems the best solution on purely bash solution (crazy you!)