15 lines
312 B
HCL
15 lines
312 B
HCL
variable "workers" {
|
|
description = "Worker node configuration"
|
|
type = object({
|
|
cpu = number
|
|
memory = number
|
|
disk = string
|
|
storagepool = string
|
|
talos_version = string
|
|
nodes = list(object({
|
|
name = string
|
|
ip_address = string
|
|
}))
|
|
})
|
|
}
|
|
|