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