google-compute-engine-plugin icon indicating copy to clipboard operation
google-compute-engine-plugin copied to clipboard

Add "Turn on display device" option to Compute Instance

Open francisbolduc opened this issue 6 years ago • 2 comments
trafficstars

At the moment, the option "Turn on display device" is absent in the google-compute-engine-plugin.

I think I could use the Instance template via google cloud console to mitigate this problem. However, terraform or google deployment manager don't seem to support the option to turn on display if I want to have infra-as-code.

francisbolduc avatar Oct 02 '19 18:10 francisbolduc

FYI, it is now possible to use terraform to "Turn on display device" using enable_display : https://www.terraform.io/docs/providers/google/r/compute_instance_template.html#enable_display

resource "google_compute_instance_template" "jenkins-template" { 
  name        = "jenkins-template"
  ...
  enable_display = true
  ...
}

bolfran001 avatar Feb 12 '20 15:02 bolfran001

I'd love to see the Turn on display device field added in the plugin directly as well!

markmssd avatar Aug 31 '20 18:08 markmssd