27 lines
599 B
HCL
27 lines
599 B
HCL
variable "node_name" {
|
|
description = "Имя ноды в кластере"
|
|
type = string
|
|
default = "px"
|
|
}
|
|
variable "vm_count" {
|
|
type = number
|
|
default = 1
|
|
|
|
}
|
|
variable "datastore_iso" {
|
|
description = "Datastore для ISO/образов"
|
|
type = string
|
|
default = "local"
|
|
}
|
|
|
|
variable "datastore_vm" {
|
|
description = "Datastore для VM-дисков"
|
|
type = string
|
|
default = "local-zfs"
|
|
}
|
|
variable "ssh_key_path" {
|
|
description = "Путь к публичному SSH-ключу"
|
|
type = string
|
|
default = "./ssh/id_terraform.pub"
|
|
}
|