🚨: fmt tofu
All checks were successful
terraform-lint / terraform-lint (push) Successful in 31s

This commit is contained in:
VC
2025-03-06 17:41:27 +01:00
parent 0c0a11cfd8
commit 9342c38e78
8 changed files with 331 additions and 331 deletions

View File

@@ -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"
} }

View File

@@ -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
} }