Add fs manager

This commit is contained in:
2026-03-28 13:20:20 +00:00
parent 84609f7861
commit 08eaaf1dbd
5 changed files with 134 additions and 0 deletions
+6
View File
@@ -53,4 +53,10 @@ module "penpot" {
source = "${local.module_dir}/30-services-software/penpot-service"
volume_path = "${local.root_volume}/penpot"
networks = [module.infrastructure_int.name]
}
module "fs-quantum" {
source = "${local.module_dir}/30-services-software/filesystem-service"
volume_path = "${local.root_volume}/fs-quantum"
networks = [module.infrastructure_int.name]
}
+1
View File
@@ -7,6 +7,7 @@ output "service_definitions" {
module.tandoor.service_definition,
module.coder.service_definition,
module.penpot.service_definition,
module.fs-quantum.service_definition,
]
}