diff --git a/terraform/main.tf b/terraform/main.tf index 455e3f1b9..797fcdcb9 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -84,4 +84,9 @@ resource "aws_db_instance" "petclinic" { Name = "PetClinic Database" Environment = var.environment } +} + +output "ecr_repository_name" { + value = aws_ecr_repository.petclinic.name + description = "Name of the PetClinic ECR repository" } \ No newline at end of file