2024-09-24 15:28:19 +02:00
|
|
|
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
|
|
|
|
|
}
|
2025-06-09 23:49:43 +02:00
|
|
|
|
|
|
|
|
output "db_name" {
|
|
|
|
|
value = var.app_name
|
|
|
|
|
}
|