Skip to content

Instantly share code, notes, and snippets.

@detj
Last active September 29, 2025 06:26
Show Gist options
  • Save detj/40247a1f466bf0270e1854288f889053 to your computer and use it in GitHub Desktop.
Save detj/40247a1f466bf0270e1854288f889053 to your computer and use it in GitHub Desktop.
Google Cloud Regions and Zones
# List all Google Cloud regions and zones
#
# It may ask to enable the [compute.googleapis.com] API if it has not been enabled earlier.
gcloud compute zones list
# List all Google Cloud zones of a region
gcloud compute zones list | rg us-central
# Set the default region for a configuration
gcloud config set compute/region REGION_NAME
# Set the default zone for a configuration
gcloud config set compute/zone ZONE_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment