12 lines
230 B
Terraform
12 lines
230 B
Terraform
variable "tag" {
|
|
description = "The version of app to install"
|
|
type = string
|
|
default = "v0.0.1"
|
|
}
|
|
|
|
variable "backend" {
|
|
description = "The backend to use for ComfyUI"
|
|
type = string
|
|
default = ""
|
|
}
|