Fix driver typo in network module, create general network module
This commit is contained in:
+14
-21
@@ -8,58 +8,51 @@ module "system_globals" {
|
||||
source = "${local.module_dir}/00-globals/system"
|
||||
}
|
||||
|
||||
module "infrastructure" {
|
||||
source = "./modules/01-networking/network-service"
|
||||
name = "infrastructure"
|
||||
driver = "host"
|
||||
attachable = true
|
||||
}
|
||||
|
||||
module "authentik" {
|
||||
source = "${local.module_dir}/30-services-software/authentik-service"
|
||||
volume_path = "${local.root_volume}/authentik"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "traccar" {
|
||||
source = "${local.module_dir}/30-services-software/traccar-service"
|
||||
volume_path = "${local.root_volume}/traccar"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "tandoor" {
|
||||
source = "${local.module_dir}/30-services-software/tandoor-service"
|
||||
volume_path = "${local.root_volume}/tandoor"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "jellyfin" {
|
||||
source = "${local.module_dir}/20-services-entertainment/jellyfin-service"
|
||||
volume_path = "${local.root_volume}/jellyfin"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "qbittorrent" {
|
||||
source = "${local.module_dir}/30-services-software/qbittorrent-service"
|
||||
volume_path = "${local.root_volume}/qbittorrent"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "coder" {
|
||||
source = "${local.module_dir}/30-services-software/coder-service"
|
||||
volume_path = "${local.root_volume}/coder"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
module "calibre" {
|
||||
source = "${local.module_dir}/20-services-entertainment/calibre-service"
|
||||
volume_path = "${local.root_volume}/calibre"
|
||||
networks = [
|
||||
"podman",
|
||||
]
|
||||
networks = [module.infrastructure.name]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user