18 lines
375 B
Terraform
18 lines
375 B
Terraform
|
|
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 = "../../modules/kubernetes/plotting-book"
|
||
|
|
tls_secret_name = var.tls_secret_name
|
||
|
|
tier = local.tiers.aux
|
||
|
|
}
|