56 lines
676 B
HCL
56 lines
676 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "target_node" {
|
|
type = string
|
|
}
|
|
|
|
variable "template_id" {
|
|
type = number
|
|
}
|
|
|
|
variable "cpu" {
|
|
type = number
|
|
}
|
|
|
|
variable "cpu_type" {
|
|
type = string
|
|
}
|
|
|
|
variable "memory" {
|
|
type = number
|
|
}
|
|
|
|
variable "disk_size" {
|
|
type = number
|
|
}
|
|
|
|
variable "storage" {
|
|
type = string
|
|
}
|
|
|
|
variable "bridge" {
|
|
type = string
|
|
}
|
|
|
|
variable "osd_storage" {
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "osd_disks" {
|
|
type = list(number)
|
|
default = []
|
|
}
|
|
|
|
variable "user_data_file_id" {
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "mac_address" {
|
|
description = "Static MAC for VM NIC (for DHCP reservation)."
|
|
type = string
|
|
}
|