Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronaldo Macapobre committed Dec 11, 2024
1 parent 1dc9cda commit 146e574
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/cloud/environments/initial/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
output "app_ecr_name" {
value = module.app_ecr.aws_ecr_repository.ecr_repository.name
value = module.app_ecr.ecr_name
}

output "lambda_ecr_name" {
value = module.lambda_ecr.aws_ecr_repository.ecr_repository.name
value = module.lambda_ecr.ecr_name
}
4 changes: 4 additions & 0 deletions infrastructure/cloud/modules/ECR/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
output "ecs_cluster_arn" {
value = aws_ecr_repository.ecr_repository.arn
}

output "ecr_name" {
value = aws_ecr_repository.ecr_repository.name
}

0 comments on commit 146e574

Please sign in to comment.