Gonçalo Rodrigues c3b7003725 chore(infra): disable Gitea and act-runner — postponed until dedicated server
Empties gitea.tf and act-runner.tf so terraform apply removes all Gitea
and runner resources. Drops the gitea namespace from the managed list.
Full config preserved in git history.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-20 16:06:32 +01:00

12 lines
218 B
HCL

locals {
namespaces = ["auth", "home", "finance", "test", "monitoring", "infrastructure"]
}
resource "kubernetes_namespace" "domains" {
for_each = toset(local.namespaces)
metadata {
name = each.value
}
}