Private
Public Access
2
0
Files
bgwaf/example/tofu/variables.tf

10 lines
244 B
Terraform
Raw Permalink Normal View History

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-01-20 17:40:16 +03:00
image = optional(string, "24.04"),
2026-01-07 14:27:55 +03:00
}))
}