Created
September 1, 2020 10:41
-
-
Save walditamaniko/4d332b7e030d93059d543578b2385423 to your computer and use it in GitHub Desktop.
Create Google Cloud VM via gcloud
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
This is will create Windows Server 2012 with 50GB SSD | |
gcloud compute instances create "windows-server" \ | |
--machine-type "n1-standard-2" \ | |
--image-project "windows-cloud" \ | |
--image "windows-server-2012-r2-dc-v20200813" \ | |
--subnet "default" \ | |
--boot-disk-size "50" \ | |
--boot-disk-type "pd-ssd" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment