Files
homelab-opentofu/modules/20-services-apps/watchtower/outputs.tf
Yuris Cakranegara cac26957a8 first commit
2025-06-06 12:01:54 +10:00

15 lines
383 B
HCL

output "container_name" {
description = "Name of the created Watchtower container"
value = module.watchtower.container_name
}
output "container_id" {
description = "ID of the created Watchtower container"
value = module.watchtower.container_id
}
output "image_id" {
description = "ID of the Watchtower image used"
value = module.watchtower.image_id
}