Create an instance from a public image Stay organized with collections Save and categorize content based on your preferences.
Someimages supportShielded VM features, whichoffer security features such as UEFI-compliant firmware, Secure Boot, andvTPM-protected Measured Boot.On Shielded VMs,vTPM and integrity monitoringare enabled by default.
Before you begin
- When creating instances from images by using the Google Cloud CLI orthe Compute Engine API, there's a limit of 20 instances per second. If you needto create a higher number of instances per second,request a quota adjustment for theImages resource.
- If you haven't already, set upauthentication. Authentication verifies your identity for access to Google Cloud services and APIs. To run code or samples from a local development environment, you can authenticate to Compute Engine by selecting one of the following options:
Select the tab for how you plan to use the samples on this page:
Console
When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.
gcloud
Install the Google Cloud CLI. After installation,initialize the Google Cloud CLI by running the following command:
gcloudinit
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
Note: If you installed the gcloud CLI previously, make sure you have the latest version by runninggcloud components update.- Set a default region and zone.
REST
To use the REST API samples on this page in a local development environment, you use the credentials you provide to the gcloud CLI.
Install the Google Cloud CLI. After installation,initialize the Google Cloud CLI by running the following command:
gcloudinit
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
Note: If you installed the gcloud CLI previously, make sure you have the latest version by runninggcloud components update.For more information, seeAuthenticate for using REST in the Google Cloud authentication documentation.
If you are bringing an existing license for your image, seeBringing your own licenses.
Required roles
To get the permission that you need to create an instance from a public image, ask your administrator to grant you theCompute Instance Admin (v1) (roles/compute.instanceAdmin.v1) IAM role on the project. For more information about granting roles, seeManage access to projects, folders, and organizations.
This predefined role contains the compute.instances.create permission, which is required to create an instance from a public image.
You might also be able to get this permission withcustom roles or otherpredefined roles.
View a list of public images available on Compute Engine
Before you create an instance by using a public image, review the list of publicimages that are available on Compute Engine.
For more information about the features available with each public image,seeFeature support by operating system.
Console
In the Google Cloud console, go to theImages page.
gcloud
Run the following command:
gcloud compute images list
Make a note of the name of the image or image family and the name of theproject containing the image.
Optional: To determine whether the image supportsShielded VM features, run the following command:
gcloud compute images describeIMAGE_NAME \ --project=IMAGE_PROJECT
Replace the following:
IMAGE_NAME: name of the image to check forsupport of Shielded VM featuresIMAGE_PROJECT:project containing theimage
If the image supports Shielded VM features, the following lineappears in the output:
type: UEFI_COMPATIBLE.
C#
Before trying this sample, follow theC# setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineC# API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
usingGoogle.Cloud.Compute.V1;usingSystem;usingSystem.Threading.Tasks;publicclassListImagesAsyncSample{publicasyncTaskListImagesAsync(// TODO(developer): Set your own default values for these parameters or pass different values when calling this method.stringprojectId="your-project-id"){// Initialize client that will be used to send requests. This client only needs to be created// once, and can be reused for multiple requests.ImagesClientclient=awaitImagesClient.CreateAsync();// Make the request to list all non-deprecated images in a project.ListImagesRequestrequest=newListImagesRequest{Project=projectId,// Listing only non-deprecated images to reduce the size of the reply.Filter="deprecated.state != DEPRECATED",// MaxResults indicates the maximum number of items that will be returned per page.MaxResults=100};// Although the MaxResults parameter is specified in the request, the sequence returned// by the ListAsync() method hides the pagination mechanic. The library makes multiple// requests to the API for you, so you can simply iterate over all the images.awaitforeach(varimageinclient.ListAsync(request)){// The result is an Image collection.Console.WriteLine($"Image: {image.Name}");}}}Go
Before trying this sample, follow theGo setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineGo API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
import("context""fmt""io"compute"cloud.google.com/go/compute/apiv1"computepb"cloud.google.com/go/compute/apiv1/computepb""google.golang.org/api/iterator""google.golang.org/protobuf/proto")// printImagesList prints a list of all non-deprecated image names available in given project.funcprintImagesList(wio.Writer,projectIDstring)error{// projectID := "your_project_id"ctx:=context.Background()imagesClient,err:=compute.NewImagesRESTClient(ctx)iferr!=nil{returnfmt.Errorf("NewImagesRESTClient: %w",err)}deferimagesClient.Close()// Listing only non-deprecated images to reduce the size of the reply.req:=&computepb.ListImagesRequest{Project:projectID,MaxResults:proto.Uint32(3),Filter:proto.String("deprecated.state != DEPRECATED"),}// Although the `MaxResults` parameter is specified in the request, the iterator returned// by the `list()` method hides the pagination mechanic. The library makes multiple// requests to the API for you, so you can simply iterate over all the images.it:=imagesClient.List(ctx,req)for{image,err:=it.Next()iferr==iterator.Done{break}iferr!=nil{returnerr}fmt.Fprintf(w,"- %s\n",image.GetName())}returnnil}Java
Before trying this sample, follow theJava setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineJava API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
importcom.google.cloud.compute.v1.Image;importcom.google.cloud.compute.v1.ImagesClient;importcom.google.cloud.compute.v1.ImagesClient.ListPage;importcom.google.cloud.compute.v1.ListImagesRequest;importjava.io.IOException;// Prints a list of all non-deprecated image names available in given project.publicstaticvoidlistImages(Stringproject)throwsIOException{// Initialize client that will be used to send requests. This client only needs to be created// once, and can be reused for multiple requests. After completing all of your requests, call// the `instancesClient.close()` method on the client to// safely clean up any remaining background resources.try(ImagesClientimagesClient=ImagesClient.create()){// Listing only non-deprecated images to reduce the size of the reply.ListImagesRequestimagesRequest=ListImagesRequest.newBuilder().setProject(project).setMaxResults(100).setFilter("deprecated.state != DEPRECATED").build();// Although the `setMaxResults` parameter is specified in the request, the iterable returned// by the `list()` method hides the pagination mechanic. The library makes multiple// requests to the API for you, so you can simply iterate over all the images.intimageCount=0;for(Imageimage:imagesClient.list(imagesRequest).iterateAll()){imageCount++;System.out.println(image.getName());}System.out.printf("Image count in %s is: %s",project,imageCount);}}Node.js
Before trying this sample, follow theNode.js setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineNode.js API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
/** * TODO(developer): Uncomment and replace these variables before running the sample. */// const projectId = 'YOUR_PROJECT_ID';constcompute=require('@google-cloud/compute');asyncfunctionlistImages(){constimagesClient=newcompute.ImagesClient();// Listing only non-deprecated images to reduce the size of the reply.constimages=imagesClient.listAsync({project:projectId,maxResults:3,filter:'deprecated.state != DEPRECATED',});// Although the `maxResults` parameter is specified in the request, the iterable returned// by the `listAsync()` method hides the pagination mechanic. The library makes multiple// requests to the API for you, so you can simply iterate over all the images.forawait(constimageofimages){console.log(` -${image.name}`);}}listImages();PHP
Before trying this sample, follow thePHP setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EnginePHP API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
use Google\Cloud\Compute\V1\Client\ImagesClient;use Google\Cloud\Compute\V1\ListImagesRequest;/** * Prints a list of all non-deprecated image names available in given project. * * @param string $projectId Project ID or project number of the Cloud project you want to list images from. * * @throws \Google\ApiCore\ApiException if the remote call fails. */function list_all_images(string $projectId){ $imagesClient = new ImagesClient(); // Listing only non-deprecated images to reduce the size of the reply. $optionalArgs = ['maxResults' => 100, 'filter' => 'deprecated.state != DEPRECATED']; /** * Although the maxResults parameter is specified in the request, the iterateAllElements() method * hides the pagination mechanic. The library makes multiple requests to the API for you, * so you can simply iterate over all the images. */ $request = (new ListImagesRequest()) ->setProject($projectId) ->setMaxResults($optionalArgs['maxResults']) ->setFilter($optionalArgs['filter']); $pagedResponse = $imagesClient->list($request); print('=================== Flat list of images ===================' . PHP_EOL); foreach ($pagedResponse->iterateAllElements() as $element) { printf(' - %s' . PHP_EOL, $element->getName()); }}Python
Before trying this sample, follow thePython setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EnginePython API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
importgoogle.cloud.compute_v1ascompute_v1defprint_images_list(project:str)->str:""" Prints a list of all non-deprecated image names available in given project. Args: project: project ID or project number of the Cloud project you want to list images from. Returns: The output as a string. """images_client=compute_v1.ImagesClient()# Listing only non-deprecated images to reduce the size of the reply.images_list_request=compute_v1.ListImagesRequest(project=project,max_results=100,filter="deprecated.state != DEPRECATED")output=[]# Although the `max_results` parameter is specified in the request, the iterable returned# by the `list()` method hides the pagination mechanic. The library makes multiple# requests to the API for you, so you can simply iterate over all the images.forimginimages_client.list(request=images_list_request):print(f" -{img.name}")output.append(f" -{img.name}")return"\n".join(output)Ruby
Before trying this sample, follow theRuby setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineRuby API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
require"google/cloud/compute/v1"# Prints a list of all non-deprecated image names available in given project.## @param [String] project project ID or project number of the Cloud project you want to list images from.defprint_images_listproject:client=::Google::Cloud::Compute::V1::Images::Rest::Client.new# Make the request to list all non-deprecated images in a project.request={project:project,# max_results indicates the maximum number of items that will be returned per page.max_results:100,# Listing only non-deprecated images to reduce the size of the reply.filter:"deprecated.state != DEPRECATED"}# Although the `max_results` parameter is specified in the request, the iterable returned# by the `list` method hides the pagination mechanic. The library makes multiple# requests to the API for you, so you can simply iterate over all the images.client.list(request).eachdo|image|puts" -#{image.name}"endendREST
Run the following command:
GET https://compute.googleapis.com/compute/v1/projects/IMAGE_PROJECT/global/images/
Make a note of the name of the image or image family and the name of theproject containing the image.
Optional: To determine whether the image supportsShielded VM features,run the following command:
GET https://compute.googleapis.com/compute/v1/projects/IMAGE_PROJECT/global/images/IMAGE_NAME
Replace the following:
IMAGE_PROJECT:project containing theimageIMAGE_NAME: name of the image to check forsupport of Shielded VM features
If the image supports Shielded VM features, the following lineappears in the output:
type: UEFI_COMPATIBLE.
Create a VM instance from a public image
Google, open source communities, and third-party vendors provide andmaintainpublic OS images. Bydefault, all Google Cloud projects can create VMs from public OS images. However, ifyour Google Cloud project has a defined list oftrusted images,you can use only the images on that list to create a VM.
If you create aShielded VMimage with alocal SSD, you can't shield datawithintegrity monitoringor thevirtual platform trusted module (vTPM).
Console
In the Google Cloud console, go to theCreate an instance page.
If prompted, select your project and clickContinue. TheCreate an instance page appears and displays theMachine configuration pane.
In theMachine configuration pane, do the following:
- In theName field, specify a name for your VM. For more information,seeResource naming convention.
Optional: In theZone field, select a zone for this VM.
The default selection isAny. If you don't change this defaultselection, then Google automatically chooses a zone for you based onmachine type and availability.
Select the machine family for your VM. The Google Cloud console thendisplays the machine series that are available for your selectedmachine family. The following machine family options are available:
- General purpose
- Compute optimized
- Memory optimized
- Storage optimized
- GPUs
In theSeries column, select the machine series for your VM.
If you selectedGPUs as the machine family in the previous step,then select theGPU type that you want. The machine series is thenautomatically selected for the selected GPU type.
In theMachine type section, select the machine type for your VM.
In the navigation menu, clickOS and storage. In theOperating system and storage pane that appears, configure your bootdisk by doing the following:
- ClickChange. TheBoot disk pane appears and displays thePublic images tab.
- In theOperating system list, select the OS type.
- In theVersion list, select the OS version.
- In theBoot disk type list, select the type of the boot disk.
- In theSize (GB) field, specify the size of the boot disk.
- Optional: For Hyperdisk Balanced boot disks, specify values for theProvisioned IOPS andProvisioned throughput fields.
- Optional: For advanced configuration options, expand theShow advanced configurations section.
- To confirm your boot disk options and return to theOperating system and storage pane, clickSelect.
In the navigation menu, clickNetworking. In theNetworking panethat appears, do the following:
- Go to theFirewall section.
To permit HTTP or HTTPS traffic to the VM, selectAllow HTTP traffic orAllow HTTPS traffic.
The Compute Engine adds a network tag to your VM andcreates the corresponding ingress firewall rule that allows allincoming traffic on
tcp:80(HTTP) ortcp:443(HTTPS). Thenetwork tag associates the firewall rule with the VM. For moreinformation, seeFirewall rules overviewin the Cloud Next Generation Firewall documentation.
Optional: If you chose an OS image that supportsShielded VMfeatures, you can modify the Shielded VM settings.
To do so, in the navigation menu, ClickSecurity. In theSecuritypane that appears, you can configure the following:
To turn onSecure Boot,select theTurn on Secure Boot checkbox. Secure Boot isdisabled by default.
To turn offvTPM, cleartheTurn on vTPM checkbox. vTPM isenabled by default.Disabling vTPM also disablesintegrity monitoringbecause integrity monitoring relies on data gathered byMeasured Boot.
To turn offintegrity monitoring,clear theTurn on Integrity Monitoringcheckbox. Integrity monitoring isenabled by default.
Optional: Specify other configuration options. For more information, seeConfiguration options during instance creation.
To create and start the VM, clickCreate.
gcloud
- Select apublic image. Make a note of the name of theimage or image family and the name of the project containing the image.
Use the
gcloud compute instances createcommandto create a VM from an image family or from a specific version of anOS image.If you specify the optional
--shielded-secure-bootflag,Compute Engine creates a VM with all three of theShielded VM featuresenabled:After Compute Engine starts your VM, you must stop the VM tomodify Shielded VMoptions.
gcloud compute instances createVM_NAME \ --zone=ZONE \ [--image=IMAGE | --image-family=IMAGE_FAMILY] \ --image-project=IMAGE_PROJECTIMAGE_FLAG \ --machine-type=MACHINE_TYPE
Replace the following:
VM_NAME:name of thenew VMZONE: zone to create the instance inIMAGE_PROJECT: theproject that containsthe imageIMAGE_FLAG: specify one of the following:Use the
--imageIMAGE_NAMEflag to specifya specific version of a public image.For example,
--image debian-12-bookworm-v20241112.Use the
--image-familyIMAGE_FAMILY_NAMEflagto specify animage family.This creates the VM from the most recent, non-deprecated OS imagein the image family. For example, if youspecify
--image-family debian-12,Compute Engine uses the latest version of the OS image in theDebian 12 image family.
MACHINE_TYPE: machine type for the new VM, whichcan be apredefined machine typeor acustommachine type.To get a list of the machine types available in a zone, use the
gcloud compute machine-types listcommandwith the--zonesflag.
Verify that Compute Engine created the VM:
gcloud compute instances describeVM_NAME
Replace
VM_NAMEwith the name of the VM.
Terraform
To create a VM, you can use thegoogle_compute_instanceresource
# Create a VM instance from a public image# in the `default` VPC network and subnetresource "google_compute_instance" "default" { name = "my-vm" machine_type = "n1-standard-1" zone = "us-central1-a" boot_disk { initialize_params { image = "ubuntu-minimal-2210-kinetic-amd64-v20230126" } } network_interface { network = "default" access_config {} }}To learn how to apply or remove a Terraform configuration, seeBasic Terraform commands.
To generate the Terraform code, you can use theEquivalent code component in the Google Cloud console.- In the Google Cloud console, go to theVM instances page.
- ClickCreate instance.
- Specify the parameters you want.
- At the top or bottom of the page, clickEquivalent code, and then click theTerraform tab to view the Terraform code.
C#
C#
Before trying this sample, follow theC# setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineC# API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
usingGoogle.Cloud.Compute.V1;usingSystem.Threading.Tasks;publicclassCreateInstanceAsyncSample{publicasyncTaskCreateInstanceAsync(// TODO(developer): Set your own default values for these parameters or pass different values when calling this method.stringprojectId="your-project-id",stringzone="us-central1-a",stringmachineName="test-machine",stringmachineType="n1-standard-1",stringdiskImage="projects/debian-cloud/global/images/family/debian-12",longdiskSizeGb=10,stringnetworkName="default"){Instanceinstance=newInstance{Name=machineName,// See https://cloud.google.com/compute/docs/machine-types for more information on machine types.MachineType=$"zones/{zone}/machineTypes/{machineType}",// Instance creation requires at least one persistent disk.Disks={newAttachedDisk{AutoDelete=true,Boot=true,Type=ComputeEnumConstants.AttachedDisk.Type.Persistent,InitializeParams=newAttachedDiskInitializeParams{// See https://cloud.google.com/compute/docs/images for more information on available images.SourceImage=diskImage,DiskSizeGb=diskSizeGb}}},NetworkInterfaces={newNetworkInterface{Name=networkName}}};// Initialize client that will be used to send requests. This client only needs to be created// once, and can be reused for multiple requests.InstancesClientclient=awaitInstancesClient.CreateAsync();// Insert the instance in the specified project and zone.varinstanceCreation=awaitclient.InsertAsync(projectId,zone,instance);// Wait for the operation to complete using client-side polling.// The server-side operation is not affected by polling,// and might finish successfully even if polling times out.awaitinstanceCreation.PollUntilCompletedAsync();}}Go
Go
Before trying this sample, follow theGo setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineGo API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
import("context""fmt""io"compute"cloud.google.com/go/compute/apiv1"computepb"cloud.google.com/go/compute/apiv1/computepb""google.golang.org/protobuf/proto")// createInstance sends an instance creation request to the Compute Engine API and waits for it to complete.funccreateInstance(wio.Writer,projectID,zone,instanceName,machineType,sourceImage,networkNamestring)error{// projectID := "your_project_id"// zone := "europe-central2-b"// instanceName := "your_instance_name"// machineType := "n1-standard-1"// sourceImage := "projects/debian-cloud/global/images/family/debian-12"// networkName := "global/networks/default"ctx:=context.Background()instancesClient,err:=compute.NewInstancesRESTClient(ctx)iferr!=nil{returnfmt.Errorf("NewInstancesRESTClient: %w",err)}deferinstancesClient.Close()req:=&computepb.InsertInstanceRequest{Project:projectID,Zone:zone,InstanceResource:&computepb.Instance{Name:proto.String(instanceName),Disks:[]*computepb.AttachedDisk{{InitializeParams:&computepb.AttachedDiskInitializeParams{DiskSizeGb:proto.Int64(10),SourceImage:proto.String(sourceImage),},AutoDelete:proto.Bool(true),Boot:proto.Bool(true),Type:proto.String(computepb.AttachedDisk_PERSISTENT.String()),},},MachineType:proto.String(fmt.Sprintf("zones/%s/machineTypes/%s",zone,machineType)),NetworkInterfaces:[]*computepb.NetworkInterface{{Name:proto.String(networkName),},},},}op,err:=instancesClient.Insert(ctx,req)iferr!=nil{returnfmt.Errorf("unable to create instance: %w",err)}iferr=op.Wait(ctx);err!=nil{returnfmt.Errorf("unable to wait for the operation: %w",err)}fmt.Fprintf(w,"Instance created\n")returnnil}Java
Before trying this sample, follow theJava setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineJava API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
importcom.google.api.gax.longrunning.OperationFuture;importcom.google.cloud.compute.v1.AttachedDisk;importcom.google.cloud.compute.v1.AttachedDisk.Type;importcom.google.cloud.compute.v1.AttachedDiskInitializeParams;importcom.google.cloud.compute.v1.InsertInstanceRequest;importcom.google.cloud.compute.v1.Instance;importcom.google.cloud.compute.v1.InstancesClient;importcom.google.cloud.compute.v1.NetworkInterface;importcom.google.cloud.compute.v1.Operation;importjava.io.IOException;importjava.util.concurrent.ExecutionException;importjava.util.concurrent.TimeUnit;importjava.util.concurrent.TimeoutException;publicclassCreateInstance{publicstaticvoidmain(String[]args)throwsIOException,InterruptedException,ExecutionException,TimeoutException{// TODO(developer): Replace these variables before running the sample.Stringproject="your-project-id";Stringzone="zone-name";StringinstanceName="instance-name";createInstance(project,zone,instanceName);}// Create a new instance with the provided "instanceName" value in the specified project and zone.publicstaticvoidcreateInstance(Stringproject,Stringzone,StringinstanceName)throwsIOException,InterruptedException,ExecutionException,TimeoutException{// Below are sample values that can be replaced.// machineType: machine type of the VM being created.// * This value uses the format zones/{zone}/machineTypes/{type_name}.// * For a list of machine types, see https://cloud.google.com/compute/docs/machine-types// sourceImage: path to the operating system image to mount.// * For details about images you can mount, see https://cloud.google.com/compute/docs/images// diskSizeGb: storage size of the boot disk to attach to the instance.// networkName: network interface to associate with the instance.StringmachineType=String.format("zones/%s/machineTypes/n1-standard-1",zone);StringsourceImage=String.format("projects/debian-cloud/global/images/family/%s","debian-11");longdiskSizeGb=10L;StringnetworkName="default";// Initialize client that will be used to send requests. This client only needs to be created// once, and can be reused for multiple requests. After completing all of your requests, call// the `instancesClient.close()` method on the client to safely// clean up any remaining background resources.try(InstancesClientinstancesClient=InstancesClient.create()){// Instance creation requires at least one persistent disk and one network interface.AttachedDiskdisk=AttachedDisk.newBuilder().setBoot(true).setAutoDelete(true).setType(Type.PERSISTENT.toString()).setDeviceName("disk-1").setInitializeParams(AttachedDiskInitializeParams.newBuilder().setSourceImage(sourceImage).setDiskSizeGb(diskSizeGb).build()).build();// Use the network interface provided in the networkName argument.NetworkInterfacenetworkInterface=NetworkInterface.newBuilder().setName(networkName).build();// Bind `instanceName`, `machineType`, `disk`, and `networkInterface` to an instance.InstanceinstanceResource=Instance.newBuilder().setName(instanceName).setMachineType(machineType).addDisks(disk).addNetworkInterfaces(networkInterface).build();System.out.printf("Creating instance: %s at %s %n",instanceName,zone);// Insert the instance in the specified project and zone.InsertInstanceRequestinsertInstanceRequest=InsertInstanceRequest.newBuilder().setProject(project).setZone(zone).setInstanceResource(instanceResource).build();OperationFuture<Operation,Operation>operation=instancesClient.insertAsync(insertInstanceRequest);// Wait for the operation to complete.Operationresponse=operation.get(3,TimeUnit.MINUTES);if(response.hasError()){System.out.println("Instance creation failed ! ! "+response);return;}System.out.println("Operation Status: "+response.getStatus());}}}Node.js
Before trying this sample, follow theNode.js setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineNode.js API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
/** * TODO(developer): Uncomment and replace these variables before running the sample. */// const projectId = 'YOUR_PROJECT_ID';// const zone = 'europe-central2-b'// const instanceName = 'YOUR_INSTANCE_NAME'// const machineType = 'n1-standard-1';// const sourceImage = 'projects/debian-cloud/global/images/family/debian-11';// const networkName = 'global/networks/default';constcompute=require('@google-cloud/compute');// Create a new instance with the values provided above in the specified project and zone.asyncfunctioncreateInstance(){constinstancesClient=newcompute.InstancesClient();console.log(`Creating the${instanceName} instance in${zone}...`);const[response]=awaitinstancesClient.insert({instanceResource:{name:instanceName,disks:[{// Describe the size and source image of the boot disk to attach to the instance.initializeParams:{diskSizeGb:'10',sourceImage,},autoDelete:true,boot:true,type:'PERSISTENT',},],machineType:`zones/${zone}/machineTypes/${machineType}`,networkInterfaces:[{// Use the network interface provided in the networkName argument.name:networkName,},],},project:projectId,zone,});letoperation=response.latestResponse;constoperationsClient=newcompute.ZoneOperationsClient();// Wait for the create operation to complete.while(operation.status!=='DONE'){[operation]=awaitoperationsClient.wait({operation:operation.name,project:projectId,zone:operation.zone.split('/').pop(),});}console.log('Instance created.');}createInstance();PHP
Before trying this sample, follow thePHP setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EnginePHP API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
use Google\Cloud\Compute\V1\AttachedDisk;use Google\Cloud\Compute\V1\AttachedDisk\Type;use Google\Cloud\Compute\V1\AttachedDiskInitializeParams;use Google\Cloud\Compute\V1\Client\InstancesClient;use Google\Cloud\Compute\V1\InsertInstanceRequest;/** * To correctly handle string enums in Cloud Compute library * use constants defined in the Enums subfolder. */use Google\Cloud\Compute\V1\Instance;use Google\Cloud\Compute\V1\NetworkInterface;/** * Creates an instance in the specified project and zone. * * @param string $projectId Project ID of the Cloud project to create the instance in. * @param string $zone Zone to create the instance in (like "us-central1-a"). * @param string $instanceName Unique name for this Compute Engine instance. * @param string $machineType Machine type of the instance being created. * @param string $sourceImage Boot disk image name or family. * @param string $networkName Network interface to associate with the instance. * * @throws \Google\ApiCore\ApiException if the remote call fails. * @throws \Google\ApiCore\ValidationException if local error occurs before remote call. */function create_instance( string $projectId, string $zone, string $instanceName, string $machineType = 'n1-standard-1', string $sourceImage = 'projects/debian-cloud/global/images/family/debian-11', string $networkName = 'global/networks/default') { // Set the machine type using the specified zone. $machineTypeFullName = sprintf('zones/%s/machineTypes/%s', $zone, $machineType); // Describe the source image of the boot disk to attach to the instance. $diskInitializeParams = (new AttachedDiskInitializeParams()) ->setSourceImage($sourceImage); $disk = (new AttachedDisk()) ->setBoot(true) ->setAutoDelete(true) ->setType(Type::name(Type::PERSISTENT)) ->setInitializeParams($diskInitializeParams); // Use the network interface provided in the $networkName argument. $network = (new NetworkInterface()) ->setName($networkName); // Create the Instance object. $instance = (new Instance()) ->setName($instanceName) ->setDisks([$disk]) ->setMachineType($machineTypeFullName) ->setNetworkInterfaces([$network]); // Insert the new Compute Engine instance using InstancesClient. $instancesClient = new InstancesClient(); $request = (new InsertInstanceRequest()) ->setInstanceResource($instance) ->setProject($projectId) ->setZone($zone); $operation = $instancesClient->insert($request); // Wait for the operation to complete. $operation->pollUntilComplete(); if ($operation->operationSucceeded()) { printf('Created instance %s' . PHP_EOL, $instanceName); } else { $error = $operation->getError(); printf('Instance creation failed: %s' . PHP_EOL, $error?->getMessage()); }}Python
Before trying this sample, follow thePython setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EnginePython API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
from__future__importannotationsimportreimportsysfromtypingimportAnyimportwarningsfromgoogle.api_core.extended_operationimportExtendedOperationfromgoogle.cloudimportcompute_v1defget_image_from_family(project:str,family:str)->compute_v1.Image:""" Retrieve the newest image that is part of a given family in a project. Args: project: project ID or project number of the Cloud project you want to get image from. family: name of the image family you want to get image from. Returns: An Image object. """image_client=compute_v1.ImagesClient()# List of public operating system (OS) images: https://cloud.google.com/compute/docs/images/os-detailsnewest_image=image_client.get_from_family(project=project,family=family)returnnewest_imagedefdisk_from_image(disk_type:str,disk_size_gb:int,boot:bool,source_image:str,auto_delete:bool=True,)->compute_v1.AttachedDisk:""" Create an AttachedDisk object to be used in VM instance creation. Uses an image as the source for the new disk. Args: disk_type: the type of disk you want to create. This value uses the following format: "zones/{zone}/diskTypes/(pd-standard|pd-ssd|pd-balanced|pd-extreme)". For example: "zones/us-west3-b/diskTypes/pd-ssd" disk_size_gb: size of the new disk in gigabytes boot: boolean flag indicating whether this disk should be used as a boot disk of an instance source_image: source image to use when creating this disk. You must have read access to this disk. This can be one of the publicly available images or an image from one of your projects. This value uses the following format: "projects/{project_name}/global/images/{image_name}" auto_delete: boolean flag indicating whether this disk should be deleted with the VM that uses it Returns: AttachedDisk object configured to be created using the specified image. """boot_disk=compute_v1.AttachedDisk()initialize_params=compute_v1.AttachedDiskInitializeParams()initialize_params.source_image=source_imageinitialize_params.disk_size_gb=disk_size_gbinitialize_params.disk_type=disk_typeboot_disk.initialize_params=initialize_params# Remember to set auto_delete to True if you want the disk to be deleted when you delete# your VM instance.boot_disk.auto_delete=auto_deleteboot_disk.boot=bootreturnboot_diskdefwait_for_extended_operation(operation:ExtendedOperation,verbose_name:str="operation",timeout:int=300)->Any:""" Waits for the extended (long-running) operation to complete. If the operation is successful, it will return its result. If the operation ends with an error, an exception will be raised. If there were any warnings during the execution of the operation they will be printed to sys.stderr. Args: operation: a long-running operation you want to wait on. verbose_name: (optional) a more verbose name of the operation, used only during error and warning reporting. timeout: how long (in seconds) to wait for operation to finish. If None, wait indefinitely. Returns: Whatever the operation.result() returns. Raises: This method will raise the exception received from `operation.exception()` or RuntimeError if there is no exception set, but there is an `error_code` set for the `operation`. In case of an operation taking longer than `timeout` seconds to complete, a `concurrent.futures.TimeoutError` will be raised. """result=operation.result(timeout=timeout)ifoperation.error_code:print(f"Error during{verbose_name}: [Code:{operation.error_code}]:{operation.error_message}",file=sys.stderr,flush=True,)print(f"Operation ID:{operation.name}",file=sys.stderr,flush=True)raiseoperation.exception()orRuntimeError(operation.error_message)ifoperation.warnings:print(f"Warnings during{verbose_name}:\n",file=sys.stderr,flush=True)forwarninginoperation.warnings:print(f" -{warning.code}:{warning.message}",file=sys.stderr,flush=True)returnresultdefcreate_instance(project_id:str,zone:str,instance_name:str,disks:list[compute_v1.AttachedDisk],machine_type:str="n1-standard-1",network_link:str="global/networks/default",subnetwork_link:str=None,internal_ip:str=None,external_access:bool=False,external_ipv4:str=None,accelerators:list[compute_v1.AcceleratorConfig]=None,preemptible:bool=False,spot:bool=False,instance_termination_action:str="STOP",custom_hostname:str=None,delete_protection:bool=False,)->compute_v1.Instance:""" Send an instance creation request to the Compute Engine API and wait for it to complete. Args: project_id: project ID or project number of the Cloud project you want to use. zone: name of the zone to create the instance in. For example: "us-west3-b" instance_name: name of the new virtual machine (VM) instance. disks: a list of compute_v1.AttachedDisk objects describing the disks you want to attach to your new instance. machine_type: machine type of the VM being created. This value uses the following format: "zones/{zone}/machineTypes/{type_name}". For example: "zones/europe-west3-c/machineTypes/f1-micro" network_link: name of the network you want the new instance to use. For example: "global/networks/default" represents the network named "default", which is created automatically for each project. subnetwork_link: name of the subnetwork you want the new instance to use. This value uses the following format: "regions/{region}/subnetworks/{subnetwork_name}" internal_ip: internal IP address you want to assign to the new instance. By default, a free address from the pool of available internal IP addresses of used subnet will be used. external_access: boolean flag indicating if the instance should have an external IPv4 address assigned. external_ipv4: external IPv4 address to be assigned to this instance. If you specify an external IP address, it must live in the same region as the zone of the instance. This setting requires `external_access` to be set to True to work. accelerators: a list of AcceleratorConfig objects describing the accelerators that will be attached to the new instance. preemptible: boolean value indicating if the new instance should be preemptible or not. Preemptible VMs have been deprecated and you should now use Spot VMs. spot: boolean value indicating if the new instance should be a Spot VM or not. instance_termination_action: What action should be taken once a Spot VM is terminated. Possible values: "STOP", "DELETE" custom_hostname: Custom hostname of the new VM instance. Custom hostnames must conform to RFC 1035 requirements for valid hostnames. delete_protection: boolean value indicating if the new virtual machine should be protected against deletion or not. Returns: Instance object. """instance_client=compute_v1.InstancesClient()# Use the network interface provided in the network_link argument.network_interface=compute_v1.NetworkInterface()network_interface.network=network_linkifsubnetwork_link:network_interface.subnetwork=subnetwork_linkifinternal_ip:network_interface.network_i_p=internal_ipifexternal_access:access=compute_v1.AccessConfig()access.type_=compute_v1.AccessConfig.Type.ONE_TO_ONE_NAT.nameaccess.name="External NAT"access.network_tier=access.NetworkTier.PREMIUM.nameifexternal_ipv4:access.nat_i_p=external_ipv4network_interface.access_configs=[access]# Collect information into the Instance object.instance=compute_v1.Instance()instance.network_interfaces=[network_interface]instance.name=instance_nameinstance.disks=disksifre.match(r"^zones/[a-z\d\-]+/machineTypes/[a-z\d\-]+$",machine_type):instance.machine_type=machine_typeelse:instance.machine_type=f"zones/{zone}/machineTypes/{machine_type}"instance.scheduling=compute_v1.Scheduling()ifaccelerators:instance.guest_accelerators=acceleratorsinstance.scheduling.on_host_maintenance=(compute_v1.Scheduling.OnHostMaintenance.TERMINATE.name)ifpreemptible:# Set the preemptible settingwarnings.warn("Preemptible VMs are being replaced by Spot VMs.",DeprecationWarning)instance.scheduling=compute_v1.Scheduling()instance.scheduling.preemptible=Trueifspot:# Set the Spot VM settinginstance.scheduling.provisioning_model=(compute_v1.Scheduling.ProvisioningModel.SPOT.name)instance.scheduling.instance_termination_action=instance_termination_actionifcustom_hostnameisnotNone:# Set the custom hostname for the instanceinstance.hostname=custom_hostnameifdelete_protection:# Set the delete protection bitinstance.deletion_protection=True# Prepare the request to insert an instance.request=compute_v1.InsertInstanceRequest()request.zone=zonerequest.project=project_idrequest.instance_resource=instance# Wait for the create operation to complete.print(f"Creating the{instance_name} instance in{zone}...")operation=instance_client.insert(request=request)wait_for_extended_operation(operation,"instance creation")print(f"Instance{instance_name} created.")returninstance_client.get(project=project_id,zone=zone,instance=instance_name)Ruby
Before trying this sample, follow theRuby setup instructions in theCompute Engine quickstart using client libraries. For more information, see theCompute EngineRuby API reference documentation.
To authenticate to Compute Engine, set up Application Default Credentials. For more information, seeSet up authentication for a local development environment.
require"google/cloud/compute/v1"# Sends an instance creation request to the Compute Engine API and waits for it to complete.## @param [String] project project ID or project number of the Cloud project you want to use.# @param [String] zone name of the zone you want to use. For example: "us-west3-b"# @param [String] instance_name name of the new virtual machine.# @param [String] machine_type machine type of the VM being created. For example: "e2-standard-2"# See https://cloud.google.com/compute/docs/machine-types for more information# on machine types.# @param [String] source_image path to the operating system image to mount on your boot# disk. This can be one of the public images# (like "projects/debian-cloud/global/images/family/debian-11")# or a private image you have access to.# See https://cloud.google.com/compute/docs/images for more information on available images.# @param [String] network_name name of the network you want the new instance to use.# For example: "global/networks/default" represents the `default`# network interface, which is created automatically for each project.defcreate_instanceproject:,zone:,instance_name:,machine_type:"n2-standard-2",source_image:"projects/debian-cloud/global/images/family/debian-11",network_name:"global/networks/default"# Initialize client that will be used to send requests. This client only needs to be created# once, and can be reused for multiple requests.client=::Google::Cloud::Compute::V1::Instances::Rest::Client.new# Construct the instance object.# It can be either a hash or ::Google::Cloud::Compute::V1::Instance instance.instance={name:instance_name,machine_type:"zones/#{zone}/machineTypes/#{machine_type}",# Instance creation requires at least one persistent disk.disks:[{auto_delete:true,boot:true,type::PERSISTENT,initialize_params:{source_image:source_image,disk_size_gb:10}}],network_interfaces:[{name:network_name}]}# Prepare a request to create the instance in the specified project and zone.request={project:project,zone:zone,instance_resource:instance}puts"Creating the#{instance_name} instance in#{zone}..."begin# Send the insert request.operation=client.insertrequest# Wait for the create operation to complete.operation=wait_until_doneoperation:operationifoperation.error?warn"Error during creation:",operation.errorelsecompute_operation=operation.operationwarn"Warning during creation:",compute_operation.warningsunlesscompute_operation.warnings.empty?puts"Instance#{instance_name} created."endrescue::Google::Cloud::Error=>ewarn"Exception during creation:",eendendREST
- Select apublic image. Make a note of the name of theimage or image family and the name of the project containing the image.
Use the
instances.insertmethodto create a VM from an image family or from a specific version of an OSimage:POST https://compute.googleapis.com/compute/v1/projects/
PROJECT_ID/zones/ZONE/instances{ "machineType":"zones/MACHINE_TYPE_ZONE/machineTypes/MACHINE_TYPE", "name":"VM_NAME", "disks":[ { "initializeParams":{ "sourceImage":"projects/IMAGE_PROJECT/global/images/IMAGE" }, "boot":true } ], "networkInterfaces":[ { "network":"global/networks/NETWORK_NAME" } ], "shieldedInstanceConfig":{ "enableSecureBoot":"ENABLE_SECURE_BOOT" }}Replace the following:
PROJECT_ID: ID of the project to create the VM inZONE: zone to create the VM inMACHINE_TYPE_ZONE: zone containing the machine type to use for the new VMMACHINE_TYPE: machine type,predefined orcustom, for the new VMVM_NAME:name of the new VMIMAGE_PROJECT:project containing the image
For example, if you specifydebian-10as the image family, specifydebian-cloudas the image project.IMAGE: specify one of the following:IMAGE: a specific version of a public imageFor example,
"sourceImage": "projects/debian-cloud/global/images/debian-10-buster-v20200309"IMAGE_FAMILY: animage familyThis creates the VM from the most recent, non-deprecated OS image. For example, if you specify
"sourceImage": "projects/debian-cloud/global/images/family/debian-10", Compute Engine creates a VM from the latest version of the OS image in theDebian 10image family.
NETWORK_NAME: the VPC network that you want to use for the VM. You can specifydefaultto use your default network.ENABLE_SECURE_BOOT: Optional: If you chose an image that supportsShielded VM features, Compute Engine, by default, enables thevirtual trusted platform module (vTPM) andintegrity monitoring. Compute Engine does not enableSecure Boot by default.If you specify
trueforenableSecureBoot, Compute Engine creates a VM with all three Shielded VM features enabled. After Compute Engine starts your VM, tomodify Shielded VM options, you must stop the VM.
Create a bare metal instance from a public image
Google, open source communities, and third-party vendors provide andmaintainpublic OS images. Bydefault, all Google Cloud projects can create bare metal instances using supportedpublic OS images. However, if your Google Cloud project has a defined list oftrusted images,you can use only the images on that list to create a bare metal instance.
Console
In the Google Cloud console, go to theCreate an instance page.
If prompted, select your project and clickContinue. TheCreate an instance page appears and displays theMachine configuration pane.
In theMachine configuration pane, do the following:
- In theName field, specify a name for your instance. For moreinformation, seeResource naming convention.
Optional: In theZone field, select a zone for this instance. Ifyou choose a zone that doesn't have any available bare metal servers,you are prompted to choose a different zone.
The default selection isAny. If you don't change this defaultselection, then Google automatically chooses a zone for you based onmachine type and availability.
Select your machine family and series by doing one of the following:
- For C3 bare metal series, selectGeneral purpose as the machinefamily and then, in theSeries column, selectC3.
- For X4 bare metal series, selectMemory optimized as the machinefamily and then, in theSeries column, selectX4.
In theMachine type section, click the list. In the filter menu,type in
metaland then select one of the available machine types.
In the navigation menu, clickOS and storage. In theOperating system and storage pane that appears, configure your bootdisk by doing the following:
- ClickChange. TheBoot disk pane appears and displays thePublic images tab.
- In theOperating system list, select the OS type.
- In theVersion list, select the OS version.
- In theBoot disk type list, select the type of the boot disk.
- In theSize (GB) field, specify the size of the boot disk.
- Optional: For Hyperdisk Balanced boot disks, specify values for theProvisioned IOPS andProvisioned throughput fields.
- Optional: For advanced configuration options, expand theShow advanced configurations section.
To confirm your boot disk options and return to theOperating system and storage pane, clickSelect.
Note: Unless you explicitly choose a different boot disk, if the nameof the new instance matches the name of an existing disk, then theexisting disk automatically attaches to the new instance as theboot disk.
In the navigation menu, clickNetworking. In theNetworking panethat appears, do the following:
- Go to theFirewall section.
To permit HTTP or HTTPS traffic to the instance, selectAllow HTTP traffic orAllow HTTPS traffic.
The Compute Engine adds a network tag to your instance andcreates the corresponding ingress firewall rule that allows allincoming traffic on
tcp:80(HTTP) ortcp:443(HTTPS). Thenetwork tag associates the firewall rule with the instance. For moreinformation, seeFirewall rules overviewin the Cloud Next Generation Firewall documentation.In theNetwork performance configuration section, verify that theNetwork interface card field is set toIDPF.
In the navigation menu, clickAdvanced. In theAdvanced pane thatthat appears, do the following:
- Expand theVM provisioning model advanced settings section. Verify that theOn host maintenance field is set to
Terminate instance.
- Expand theVM provisioning model advanced settings section. Verify that theOn host maintenance field is set to
Optional. Specify any other configuration parameters of your choice. Formore information about custom configuration options, seeCreate and start an instance.
To create and start the bare metal instance, clickCreate.
gcloud
- Select apublic image that supports bare metal instances.Make a note of the name of theimage or image family and the name of the project containing the image.
Use the
gcloud compute instances createcommandto create a bare metal instance from an image family or from a specificversion of an OS image.gcloud compute instances createINSTANCE_NAME \ --zone=ZONE \ --machine-type=MACHINE_TYPE \ --network-interface=nic-type=IDPF \ --maintenance-policy=TERMINATE \ --create-disk=boot=yes,type=hyperdisk-balanced,image=projects/IMAGE_PROJECT/global/images/IMAGE,provisioned-iops=IOPS,provisioned-throughput=THROUGHPUT,size=SIZE \ --no-shielded-secure-boot Replace the following:
INSTANCE_NAME: aname for thenew bare metal instanceZONE: zone to create the bare metalinstance inMACHINE_TYPE: the bare metal machine type touse for the instance. The name of the machine type must end in-metal.To get a list of the machine types available in a zone, use the
gcloud compute machine-types listcommandwith the--zonesflag.IMAGE_PROJECT: theimage projectthat contains the imageIMAGE: specify one of the following:- A specific version of the OS image—for example,
sles-15-sp4-sap-v20240208-x86-6. - Animage family, which must beformatted as
family/IMAGE_FAMILY. This createsthe instance from the most recent, non-deprecated OS image. Forexample, if you specifyfamily/sles-15-sp4-sap, Compute Enginecreates a bare metal instance from the latest version of the OSimage in the SUSE Linux Enterprise Server 15 SP4 image family. Formore information about using image families, seeImage families best practices.
- A specific version of the OS image—for example,
IOPS: Optional: the highest number of I/Ooperations per second (IOPS) that the disk can handle.THROUGHPUT: Optional: an integer thatrepresents the highest throughput, measured in MiB per second, thatthe disk can handle.SIZE: Optional: the size of the newdisk. The value must be a whole number. The default unit ofmeasurement is GiB.
Verify that Compute Engine created the instance:
gcloud compute instances describeINSTANCE_NAME
Replace
INSTANCE_NAMEwith the name of thenew instance.
REST
- Select apublic image that supports bare metal instances.Make a note of the name of theimage or image family and the name of the project containing the image.
Use the
instances.insertmethodto create a bare metal instance from an image family or from a specificversion of an OS image:POST https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/instances{ "machineType": "projects/PROJECT_ID/zones/MACHINE_TYPE_ZONE/machineTypes/MACHINE_TYPE", "name": "INSTANCE_NAME", "disks": [ { "boot": true, "initializeParams": { "diskSizeGb": "DISK_SIZE", "diskType": "hyperdisk-balanced", "provisionedIops": "IOPS_LIMIT", "provisionedThroughput": "THROUGHPUT_LIMIT", "sourceImage": "projects/IMAGE_PROJECT/global/images/IMAGE" } } ], "networkInterfaces": [ { "nicType": "IDPF" } ], "scheduling": { "onHostMaintenance": "TERMINATE" }}Replace the following:
PROJECT_ID: ID of the project to create thebare metal instance inZONE: zone to create the bare metalinstance inMACHINE_TYPE_ZONE: zone that contains themachine type to use for the new bare metal instanceMACHINE_TYPE: the machine type touse for the instance. The name of the machine type must end in-metal.INSTANCE_NAME:name of thenew instanceDISK_SIZE: disk size in GiBIOPS_LIMIT: the number of I/O operations persecond that you want to provision for the disk.THROUGHPUT_LIMIT: an integer that representsthe throughput, measured in MB per second, that you want to provisionfor the disk.IMAGE_PROJECT: theimage projectthat contains the imageIMAGE: specify one of the following:- A specific version of the OS image—for example,
sles-15-sp4-sap-v20240208-x86-6. - Animage family, which must beformatted as
family/IMAGE_FAMILY. This createsthe instance from the most recent, non-deprecated OS image. Forexample, if you specifyfamily/sles-15-sp4-sap, Compute Enginecreates a bare metal instance from the latest version of the OSimage in the SUSE Linux Enterprise Server 15 SP4 image family. Formore information about using image families, seeImage families best practices.
- A specific version of the OS image—for example,
What's next
- Learn more aboutimages.
- Learn how tocheck the status of an instanceto see when it is ready to use.
- Learn how toconnect to your instance.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-15 UTC.