feat: Implement MariaDB and backup job modules with configuration and secrets management

This commit is contained in:
2025-04-27 19:12:07 +02:00
parent 761c183ce2
commit 654cf500f9
14 changed files with 5 additions and 74 deletions
+15
View File
@@ -0,0 +1,15 @@
output "host" {
value = "mariadb"
}
output "port" {
value = 3306
}
output "root_crendentials_name" {
value = kubernetes_secret.root_password.metadata[0].name
}
output "app_crendentials_name" {
value = kubernetes_secret.app_password.metadata[0].name
}