output "id" { description = "Application identifier." value = dokploy_application.this.id } output "app_name" { description = "Docker service name Dokploy assigned to the application." value = dokploy_application.this.app_name } output "status" { description = "Current application status reported by Dokploy." value = dokploy_application.this.application_status } output "domain_ids" { description = "Domain identifiers keyed by hostname." value = { for host, domain in dokploy_domain.this : host => domain.id } } output "urls" { description = "Public URLs the service is reachable on." value = [for domain in var.domains : "${domain.https ? "https" : "http"}://${domain.host}${domain.path}"] } output "mount_ids" { description = "Mount identifiers keyed by container path." value = { for path, mount in dokploy_mount.this : path => mount.id } }