variable "name" { description = "Name of the instance." type = string } variable "image" { description = "Base image from which the instance will be created." type = string default = null } variable "description" { description = "Description of the instance." type = string default = null } variable "type" { description = "Instance type. Can be 'container' or 'virtual-machine'." type = string default = "container" } variable "ephemeral" { description = "Whether this instance is ephemeral." type = bool default = false } variable "running" { description = "Whether the instance should be started (running)." type = bool default = true } variable "wait_for" { description = <