Patrick de Ruiter 68c762ee03
Initial commit: Terraform module for Nexus on Docker
Deploys Sonatype Nexus Repository Manager with:
- Traefik ingress with TLS (production certresolver)
- Persistent storage at /opt/nexus-data
- Health checks and memory limits
2026-02-02 00:22:29 +01:00

12 lines
348 B
HCL

# Purpose: This file is used to output the values of the resources created in the main.tf file.
output "container_id" {
description = "The ID of the Nexus container"
value = docker_container.application.id
}
output "container_name" {
description = "The name of the Nexus container"
value = docker_container.application.name
}