Phase 3: all 27 platform modules now run as independent stacks. Platform reduced to empty shell (outputs only) for backward compat with 72 app stacks that declare dependency "platform". Fixed technitium cross-module dashboard reference by copying file. Woodpecker pipeline applies all 27+1 stacks in parallel via loop. All applied with zero destroys.
12 lines
287 B
HCL
12 lines
287 B
HCL
variable "tls_secret_name" { type = string }
|
|
variable "k8s_ca_cert" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
module "k8s-portal" {
|
|
source = "./modules/k8s-portal"
|
|
tier = local.tiers.edge
|
|
tls_secret_name = var.tls_secret_name
|
|
k8s_ca_cert = var.k8s_ca_cert
|
|
}
|