infra/infra/vultr-kubernetes/namespaces.tf
shockrah 01b7b4ced8
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 5s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 18s
Moving logging related things to the new logging namespace
2025-11-05 21:55:40 -08:00

26 lines
492 B
HCL

resource kubernetes_namespace playground {
metadata {
annotations = {
names = var.playground.namespace
}
name = var.playground.namespace
}
}
resource kubernetes_namespace openobserve {
metadata {
annotations = {
names = "openobserve"
}
name = "openobserve"
}
}
resource kubernetes_namespace logging {
metadata {
annotations = {
names = "logging"
}
name = "logging"
}
}