terraform proxmox: Make balloon size configurable

This commit is contained in:
JuliusFreudenberger 2026-07-19 16:02:28 +02:00
parent ed36c6c304
commit 99cbd4b995
3 changed files with 9 additions and 2 deletions

View file

@ -21,10 +21,16 @@ variable "target_node" {
}
variable "memory" {
description = "Memory to allocate for the VM"
description = "Memory to allocate for the VM in Megabytes"
type = string
}
variable "balloon" {
description = "The minimum amount of memory to allocate to the VM in Megabytes"
type = number
default = 1024
}
variable "cpu_cores" {
description = "Number of CPU cores to allocate for the VM"
type = number