Last active
September 29, 2025 06:26
-
-
Save detj/40247a1f466bf0270e1854288f889053 to your computer and use it in GitHub Desktop.
Google Cloud Regions and Zones
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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