Restructure: servers/legion/ layout, rename repo to infrastructure

This commit is contained in:
Will Anderson
2026-03-23 07:38:42 -05:00
parent 7751eddd73
commit 0b4a236a88
22 changed files with 4 additions and 4 deletions
+19
View File
@@ -0,0 +1,19 @@
resource "kubernetes_namespace" "platform" {
metadata {
name = "platform"
labels = {
managed-by = "terraform"
tier = "infrastructure"
}
}
}
resource "kubernetes_namespace" "ci" {
metadata {
name = "ci"
labels = {
managed-by = "terraform"
tier = "infrastructure"
}
}
}