Add ECR repository name output for debugging

This commit is contained in:
Favee 2025-04-13 15:55:18 +01:00
parent d2a30032f5
commit 171da4b97b

View file

@ -85,3 +85,8 @@ resource "aws_db_instance" "petclinic" {
Environment = var.environment
}
}
output "ecr_repository_name" {
value = aws_ecr_repository.petclinic.name
description = "Name of the PetClinic ECR repository"
}