Fediversity/deployment/run/tf-proxmox-template/variables.tf
Kiara Grouwstra 72ad66edf8
verify checksum on upload
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-25 19:20:16 +02:00

31 lines
622 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"
}
variable "checksum" {
type = string
description = "The SHA256 checksum of the source file."
}