Private
Public Access
2
0

First commit

This commit is contained in:
2026-01-07 14:27:55 +03:00
commit 0ffc9385c3
47 changed files with 11658 additions and 0 deletions

9
tofu/variables.tf Normal file
View File

@@ -0,0 +1,9 @@
variable "vms" {
description = "Liste des machines virtuelles"
type = map(object({
cpus = optional(number, 2),
memory = optional(string, "2g"),
disk = optional(string, "12g"),
image = optional(string, "24.04"),
}))
}