twenty and dify

This commit is contained in:
serban-alexandru
2024-07-26 17:00:47 +03:00
parent 5f0672aaf1
commit 03e9670915
56 changed files with 3198 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
resource "kubernetes_service" "twentycrm_db" {
metadata {
name = "${local.twentycrm_app_name}-db"
namespace = kubernetes_namespace.twentycrm.metadata.0.name
}
spec {
selector = {
app = "${local.twentycrm_app_name}-db"
}
session_affinity = "ClientIP"
port {
port = 5432
target_port = 5432
}
type = "ClusterIP"
}
}