Files
homelab-opentofu/services/outputs.tf
Yuris Cakranegara e91d1730f6 feat: add ntfy
2025-06-07 16:31:27 +10:00

17 lines
451 B
HCL

// 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,
module.ntfy.service_definition
]
}
output "homelab_docker_network_name" {
description = "The name of the Docker network"
value = module.homelab_docker_network.name
}