Complete the code to set the project ID in the configuration.
gcloud config set project [1]The gcloud config set project command requires the actual project ID as the argument.
Complete the command to set the default compute zone in gcloud configuration.
gcloud config set compute/[1] us-central1-aThe correct property to set the compute zone is compute/zone.
Fix the error in the command to set the default compute region.
gcloud config set compute/[1] us-central1The correct property to set the compute region is compute/region.
Fill both blanks to configure the default account and project.
gcloud config set [1] user@example.com gcloud config set [2] my-project-123
The property for setting the user email is account, and for the project is project.
Fill all three blanks to list all current gcloud configuration properties.
gcloud [1] list --[2] --format=[3]
The command to list configuration is gcloud config list. The flag to show all properties is --all. The output format can be set to yaml for readability.