Add SSH key to instance metadata

Add a public SSH key to the instance metadata during VM creation.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

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_instance" 
  
 "default" 
  
 { 
  
 name 
  
 = 
  
 "my-vm" 
  
 machine_type 
  
 = 
  
 "n1-standard-1" 
  
 zone 
  
 = 
  
 "us-central1-a" 
  
 boot_disk 
  
 { 
  
 initialize_params 
  
 { 
  
 image 
  
 = 
  
 "ubuntu-1404-trusty-v20160627" 
  
 } 
  
 } 
 # Local SSD disk 
  
 scratch_disk 
  
 { 
  
 interface 
  
 = 
  
 "SCSI" 
  
 } 
  
 network_interface 
  
 { 
  
 network 
  
 = 
  
 "default" 
  
 access_config 
  
 {} 
  
 } 
  
 metadata 
  
 = 
  
 { 
  
 "ssh-keys" 
  
 = 
  
<< EOT 
  
 dev 
 : 
 ssh-ed 
 25519 
  
 AAAAC 
 3 
 NzaC 
 1 
 lZDI 
 1 
 NTE 
 5 
 AAAAILg 
 6 
 UtHDNyMNAh 
 0 
 GjaytsJdrUxjtLy 
 3 
 APXqZfNZhvCeT 
  
 dev 
  
 test 
 : 
 ssh-ed 
 25519 
  
 AAAAC 
 3 
 NzaC 
 1 
 lZDI 
 1 
 NTE 
 5 
 AAAAILg 
 6 
 UtHDNyMNAh 
 0 
 GjaytsJdrUxjtLy 
 3 
 APXqZfNZhvCeT 
  
 test 
  
 EOT 
  
 } 
 } 
 

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: