Create a Compute Engine instance with an attached disk

Use Terraform to create a Compute Engine instance with an attached disk

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands . For more information, see the Terraform provider reference documentation .

  resource 
  
 "google_compute_disk" 
  
 "default" 
  
 { 
  
 name 
  
 = 
  
 "disk-name1" 
  
 type 
  
 = 
  
 "pd-ssd" 
  
 zone 
  
 = 
  
 "us-central1-a" 
  
 image 
  
 = 
  
 "debian-11-bullseye-v20220719" 
  
 labels 
  
 = 
  
 { 
  
 environment 
  
 = 
  
 "dev" 
  
 } 
  
 physical_block_size_bytes 
  
 = 
  
 4096 
 } 
 resource 
  
 "google_compute_snapshot" 
  
 "snapdisk" 
  
 { 
  
 name 
  
 = 
  
 "snapshot-name" 
  
 source_disk 
  
 = 
  
 google_compute_disk.default.name 
  
 zone 
  
 = 
  
 "us-central1-a" 
 } 
 resource 
  
 "google_compute_region_disk" 
  
 "regiondisk" 
  
 { 
  
 name 
  
 = 
  
 "region-disk-name" 
  
 snapshot 
  
 = 
  
 google_compute_snapshot.snapdisk.id 
  
 type 
  
 = 
  
 "pd-ssd" 
  
 region 
  
 = 
  
 "us-central1" 
  
 physical_block_size_bytes 
  
 = 
  
 4096 
  
 size 
  
 = 
  
 11 
  
 replica_zones 
  
 = 
  
 [ 
 "us-central1-a", "us-central1-f" 
 ] 
 } 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: