You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Now that you understand the fundamentals of Google Cloud — the global infrastructure, resource hierarchy, management tools, billing, and support — it is time to put that knowledge into practice. This lesson walks you through creating your first GCP project, enabling APIs, deploying resources, and following best practices from the start.
A project is the fundamental organising unit in GCP. Every resource you create must belong to a project. Here is how to create one:
# Create a new project
gcloud projects create my-first-project \
--name="My First GCP Project"
# Set it as the active project
gcloud config set project my-first-project
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.