2026-02-22 13:56:34 +00:00
|
|
|
locals {
|
|
|
|
|
tiers = {
|
|
|
|
|
core = "0-core"
|
|
|
|
|
cluster = "1-cluster"
|
|
|
|
|
gpu = "2-gpu"
|
|
|
|
|
edge = "3-edge"
|
|
|
|
|
aux = "4-aux"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module "reloader" {
|
2026-02-22 14:38:14 +00:00
|
|
|
source = "./module"
|
2026-02-22 13:56:34 +00:00
|
|
|
tier = local.tiers.aux
|
|
|
|
|
}
|