Initial commit

This commit is contained in:
2026-06-17 22:31:40 +01:00
commit 799b19d445
11 changed files with 635 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
variable "cpus" {
description = "The number of CPU cores allocated to each virtual machine."
type = number
default = 2
nullable = false
validation {
condition = var.cpus >= 1
error_message = "Allocated CPUs must be equal to or greater than 1."
}
}
variable "memory" {
description = "The amount of memory allocated to each virtual machine."
type = string
default = "4GiB"
nullable = false
}