Complete the code to create an instance template with a specified machine type.
gcloud compute instance-templates create my-template --machine-type=[1]The --machine-type flag specifies the machine type for the instance template.
Complete the code to specify the boot disk image when creating an instance template.
gcloud compute instance-templates create my-template --image=[1]The --image flag sets the boot disk image for the instance template.
Fix the error in the command to create an instance template with a network tag.
gcloud compute instance-templates create my-template --tags=[1]The --tags flag assigns network tags to instances created from the template.
Fill both blanks to create an instance template with a specific machine type and network tag.
gcloud compute instance-templates create my-template --machine-type=[1] --tags=[2]
The --machine-type flag sets the machine type, and --tags assigns network tags.
Fill all three blanks to create an instance template with a machine type, boot image, and network tag.
gcloud compute instance-templates create my-template --machine-type=[1] --image=[2] --tags=[3]
This command sets the machine type, boot image, and network tags for the instance template.