google-compute-engine-plugin
google-compute-engine-plugin copied to clipboard
Add "Turn on display device" option to Compute Instance
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.
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
...
}
I'd love to see the Turn on display device field added in the plugin directly as well!