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>
12 lines
218 B
HCL
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
|
|
}
|
|
}
|