infra/stacks/plotting-book/main.tf

18 lines
345 B
Terraform
Raw Normal View History

variable "tls_secret_name" { type = string }
locals {
tiers = {
core = "0-core"
cluster = "1-cluster"
gpu = "2-gpu"
edge = "3-edge"
aux = "4-aux"
}
}
module "plotting-book" {
source = "./module"
tls_secret_name = var.tls_secret_name
tier = local.tiers.aux
}