diff --git a/proxmox/terraform/modules/node/variables.tf b/proxmox/terraform/modules/node/variables.tf index c6f5e1f..58bbcec 100644 --- a/proxmox/terraform/modules/node/variables.tf +++ b/proxmox/terraform/modules/node/variables.tf @@ -1,96 +1,96 @@ variable "hostname" { description = "Node's hostname" type = string } variable "description" { description = "Node's description" type = string } variable "hypervisor" { description = "Hypervisor to install the vm to (choice: orsay, hypervisor3, beaubourg, branly)" type = string } variable "template" { - description = "Template to use (template-debian-9, template-debian-10)" + description = "Template created by packer to use (template-debian-10, debian-buster-...)" type = string - default = "debian-buster-2020-10-16" + default = "debian-buster-2020-11-06" } variable "sockets" { description = "Number of sockets" type = string default = "1" } variable "cores" { description = "Number of cores" type = string default = "1" } variable "memory" { description = "Memory in Mb" type = string default = "1024" } variable "networks" { description = "Default networks configuration (id, ip, gateway, macaddr, bridge)" type = list(object({ id = number ip = string gateway = string macaddr = string bridge = string })) default = [] } variable "vmid" { description = "virtual machine id" type = number default = 0 } variable "balloon" { description = "ballooning option" type = number default = 0 } variable "numa" { type = bool default = false } variable "storages" { description = "Default disks configuration (id, storage, size, storage_type)" type = list(object({ id = number storage = string size = string storage_type = string })) default = [{ id = 0 storage = "proxmox" size = "32G" storage_type = "cephfs" }] } variable "config" { description = "Local config to avoid duplication from the main module" type = map(string) } variable "pre_provision_steps" { description = "List of sequential provisioning steps to apply" type = list(string) default = [] }