I am trying to use terraform to build an instance group using my docker container. Is it possible to use a docker image as a source?
resource "google_compute_image" "bootable-image" {
name = "my-custom-image"
project = "my-test-compute-4803e3ad"
source_disk = "gcr.io/my-test-compute-4803e3ad/hello"
}
I can not use kubernetes for other reasons.