Fediversity/deployment/run/tf-proxmox-template/variables.tf
Kiara Grouwstra 3dd2412739
split proxmox upload/deploy
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-22 15:31:40 +02:00

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"
}