feature: Add satisfactory to homelab

This commit is contained in:
2026-04-02 13:05:15 +00:00
parent 1f22570f63
commit 7c4ca2cdc6
5 changed files with 96 additions and 1 deletions
+8 -1
View File
@@ -25,6 +25,12 @@ module "jellyfin" {
networks = [module.infrastructure_int.name]
}
module "satisfactory" {
source = "${local.module_dir}/20-services-entertainment/satisfactory-service"
volume_path = "${local.root_volume}/satisfactory"
networks = [module.infrastructure_int.name]
}
module "authentik" {
source = "${local.module_dir}/30-services-software/authentik-service"
volume_path = "${local.root_volume}/authentik"
@@ -59,4 +65,5 @@ 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
@@ -2,6 +2,7 @@ output "service_definitions" {
description = "Service definitions for all services"
value = [
module.jellyfin.service_definition,
module.satisfactory.service_definition,
module.authentik.service_definition,
module.traccar.service_definition,
module.tandoor.service_definition,