2026-01-07 14:27:55 +03:00
|
|
|
variable "vms" {
|
|
|
|
|
description = "Liste des machines virtuelles"
|
|
|
|
|
type = map(object({
|
|
|
|
|
cpus = optional(number, 2),
|
2026-01-20 17:40:16 +03:00
|
|
|
memory = optional(string, "3g"),
|
2026-01-07 14:27:55 +03:00
|
|
|
disk = optional(string, "12g"),
|
2026-03-18 09:53:24 +03:00
|
|
|
image = optional(string, "https://cloud.debian.org/images/cloud/trixie/latest/debian-13-generic-amd64.qcow2"),
|
2026-01-07 14:27:55 +03:00
|
|
|
}))
|
|
|
|
|
}
|