feat: add variable master and worker counts

This commit is contained in:
2026-08-14 22:08:45 +01:00
parent aa0e9f37bf
commit 9abb0b010e
2 changed files with 17 additions and 7 deletions
+14
View File
@@ -1,3 +1,17 @@
variable "master_count" {
description = "The number of master nodes to provision."
type = number
default = 1
nullable = false
}
variable "worker_count" {
description = "The number of worker nodes to provision."
type = number
default = 0
nullable = false
}
variable "cpus" {
description = "The number of CPU cores allocated to each virtual machine."
type = number