Google Cloud Command Line for Beginners | Creating VPC , Subnets ,VM using gcloud CLI

Опубликовано: 23 Июнь 2026
на канале: i27Academy
3,982
67

In this video, we will start learning towards Gcloud commands,
We will create a Custom VPC , Subnet , firewall rule, virtual machine using Gcloud cli.
Below are the commands i used in the video.
gcloud compute networks list

gcloud compute networks delete default --quiet

gcloud compute networks create gcloud-vpc --subnet-mode=custom

gcloud compute networks subnets create cli-subnet1 --network=gcloud-vpc --range=10.0.1.0/24 --region=us-central1

gcloud compute firewall-rules create firewall-gcloud --direction=INGRESS --priority=1000 --network=gcloud-vpc --action=ALLOW --rules=tcp:22 --source-ranges=0.0.0.0/0

gcloud compute instances create gcloud-vm --zone=us-central1-a --subnet=cli-subnet1

You can join, telegram group for more quick updates:
https://t.me/devopswithcloud