Skip to content

Instantly share code, notes, and snippets.

@jobquiroz
Last active April 28, 2022 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jobquiroz/5cd7e354addfb089b5aab96cd0b76aa3 to your computer and use it in GitHub Desktop.
Save jobquiroz/5cd7e354addfb089b5aab96cd0b76aa3 to your computer and use it in GitHub Desktop.
# Version 1
project_id = %system gcloud config get-value core/project
project_id = project_id[0]
# Version 2
project_id = ! gcloud config list --format 'value(core.project)' 2>/dev/null
PROJECT_ID = project_id[0]
# Version 3
project_id=!gcloud config get-value project
project_id = project_id[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment