First commit
This commit is contained in:
9
tofu/variables.tf
Normal file
9
tofu/variables.tf
Normal 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"),
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user