Add actualbudget, sort imports

This commit is contained in:
2025-08-18 20:09:17 +00:00
parent 84df6498db
commit 539773f862
5 changed files with 83 additions and 10 deletions
+16 -9
View File
@@ -19,6 +19,18 @@ module "infrastructure_int" {
}
}
module "jellyfin" {
source = "${local.module_dir}/20-services-entertainment/jellyfin-service"
volume_path = "${local.root_volume}/jellyfin"
networks = [module.infrastructure_int.name]
}
module "calibre" {
source = "${local.module_dir}/20-services-entertainment/calibre-service"
volume_path = "${local.root_volume}/calibre"
networks = [module.infrastructure_int.name]
}
module "authentik" {
source = "${local.module_dir}/30-services-software/authentik-service"
volume_path = "${local.root_volume}/authentik"
@@ -37,12 +49,6 @@ module "tandoor" {
networks = [module.infrastructure_int.name]
}
module "jellyfin" {
source = "${local.module_dir}/20-services-entertainment/jellyfin-service"
volume_path = "${local.root_volume}/jellyfin"
networks = [module.infrastructure_int.name]
}
module "qbittorrent" {
source = "${local.module_dir}/30-services-software/qbittorrent-service"
volume_path = "${local.root_volume}/qbittorrent"
@@ -55,8 +61,9 @@ module "coder" {
networks = [module.infrastructure_int.name]
}
module "calibre" {
source = "${local.module_dir}/20-services-entertainment/calibre-service"
volume_path = "${local.root_volume}/calibre"
module "actualbudget" {
source = "${local.module_dir}/30-services-software/actualbudget-service"
volume_path = "${local.root_volume}/actualbudget"
networks = [module.infrastructure_int.name]
}
+2 -1
View File
@@ -3,11 +3,12 @@ output "service_definitions" {
value = [
module.jellyfin.service_definition,
module.calibre.service_definition,
module.authentik.service_definition,
module.traccar.service_definition,
module.tandoor.service_definition,
module.qbittorrent.service_definition,
module.coder.service_definition,
module.authentik.service_definition,
module.actualbudget.service_definition,
]
}