mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-11-02 03:08:34 +00:00
9 lines
204 B
HCL
9 lines
204 B
HCL
|
|
output "arch" {
|
|
value = { for k, v in local.vm_arch : k => {
|
|
cpus : v.cpus
|
|
numa : { for numa in range(length(var.cpu_affinity)) : numa => v.numa[numa] if length(v.numa[numa]) > 0 }
|
|
}
|
|
}
|
|
}
|