terraform proxmox: Make balloon size configurable
This commit is contained in:
parent
ed36c6c304
commit
99cbd4b995
3 changed files with 9 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue