forked from fediversity/fediversity
26 lines
523 B
HCL
26 lines
523 B
HCL
variable "host" {
|
|
description = "the host of the ProxmoX Virtual Environment."
|
|
type = string
|
|
}
|
|
|
|
variable "node_name" {
|
|
description = "the name of the ProxmoX node to use."
|
|
type = string
|
|
}
|
|
|
|
variable "image" {
|
|
description = "Back-up file to upload."
|
|
type = string
|
|
}
|
|
|
|
variable "image_datastore_id" {
|
|
description = "ID of the datastore of the image."
|
|
type = string
|
|
default = "local"
|
|
}
|
|
|
|
variable "category" {
|
|
type = string
|
|
description = "Category to be used in naming the base image."
|
|
default = "test"
|
|
}
|