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
+19
View File
@@ -0,0 +1,19 @@
resource "kubernetes_persistent_volume" "server" {
metadata {
name = "${local.twentycrm_app_name}-server-pv"
}
spec {
storage_class_name = "default"
capacity = {
storage = local.twentycrm_server_pv_capacity
}
access_modes = ["ReadWriteOnce"]
# refer to Terraform Docs for your specific implementation requirements
# https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/persistent_volume
persistent_volume_source {
local {
path = local.twentycrm_server_pv_path
}
}
}
}