Add actualbudget, sort imports
This commit is contained in:
+16
-9
@@ -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
@@ -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,
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user