output "openresty_container_name" { description = "Name of the OpenResty container on the remote host." value = docker_container.openresty.name } output "openresty_external_port" { description = "External port OpenResty is reachable on." value = var.openresty_external_port } output "postgres_container_name" { description = "Name of the PostgreSQL container (reachable within the app network)." value = docker_container.postgres.name } output "redis_container_name" { description = "Name of the Redis container (reachable within the app network)." value = docker_container.redis.name } output "network_name" { description = "Name of the Docker bridge network shared by all app containers." value = docker_network.app.name } output "postgres_volume_name" { description = "Name of the PostgreSQL data volume. Empty string in dev (ephemeral) mode." value = local.persistent ? docker_volume.postgres[0].name : "" } output "redis_volume_name" { description = "Name of the Redis data volume. Empty string in dev (ephemeral) mode." value = local.persistent ? docker_volume.redis[0].name : "" }