Creating dev namespace
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 6s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 19s

This commit is contained in:
shockrah 2025-11-03 01:17:54 -08:00
parent 718647f617
commit c6b2a062e9

View File

@ -5,4 +5,13 @@ resource kubernetes_namespace playground {
} }
name = var.playground.namespace name = var.playground.namespace
} }
}
resource kubernetes_namespace dev {
metadata {
annotations = {
names = "dev"
}
name = "dev"
}
} }