I am running a VM instance on a google cloud compute project.
I would like to fetch information about the instance in a text file so that I can pass it to another developer and he will be able to spin off similar instance on his own google cloud compute project.
In other words, the information I'm looking for includes (among others): the type operating system selected for the instance, the number of GPUs and their type, instance's zone, disk size, disk type (SSD or other), number of CPUs etc...
I'm using gcloud SDK to start or stop the instance. I tried to run gcloud compute instances describe, but the information that I retrieve this way does not include all the information I'm looking for.
There is question with somewhat similar title but the OP of that question is looking for a different info.
Thanks!