This commit is contained in:
@@ -30,11 +30,11 @@ resource "proxmox_virtual_environment_container" "container" {
|
||||
}
|
||||
|
||||
cpu {
|
||||
cores = "${var.cpu_cores}"
|
||||
cores = var.cpu_cores
|
||||
}
|
||||
|
||||
memory {
|
||||
dedicated = "${var.memory_dedicated}"
|
||||
dedicated = var.memory_dedicated
|
||||
swap = "512"
|
||||
}
|
||||
|
||||
|
@@ -6,7 +6,7 @@ variable "cpu_cores" {
|
||||
|
||||
variable "start_on_boot" {
|
||||
description = "Shall the VM start at boot?"
|
||||
type= bool
|
||||
type = bool
|
||||
default = false
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user