Deploys Sonatype Nexus Repository Manager with: - Traefik ingress with TLS (production certresolver) - Persistent storage at /opt/nexus-data - Health checks and memory limits
12 lines
348 B
HCL
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
|
|
}
|