Setup GCP Account
Steps to setup the GCP account before provisioning Infrastructure
Last updated
Was this helpful?
Was this helpful?
[compute]
region = GCP_REGION
zone = GCP_AVAILABILITY_ZONE
[core]
account = demo@example.com
disable_usage_reporting = False
project = GCP_PROJECT_IDgcloud auth application-default logingcloud components install gke-gcloud-auth-plugingcloud services enable compute.googleapis.com \
container.googleapis.com \
servicenetworking.googleapis.com \
sqladmin.googleapis.com \
cloudkms.googleapis.com \
--project=<GCP_PROJECT_ID> # update project-id
# in-case above cmd fails
# try below one-liner cmd, update project-id at the end
gcloud services enable compute.googleapis.com container.googleapis.com servicenetworking.googleapis.com sqladmin.googleapis.com cloudkms.googleapis.com --project=<GCP_PROJECT_ID>