refactor: simplify project structure

This commit is contained in:
Yuris Cakranegara
2025-06-07 14:58:28 +10:00
parent 3ed0b402f5
commit c4775366e8
42 changed files with 441 additions and 1024 deletions

15
services/outputs.tf Normal file
View File

@@ -0,0 +1,15 @@
// Services environment outputs
// Consolidated service definitions for networking
output "service_definitions" {
description = "Service definitions for all services"
value = [
module.actualbudget.service_definition,
module.emulatorjs.service_definition
]
}
output "homelab_docker_network_name" {
description = "The name of the Docker network"
value = module.homelab_docker_network.name
}