Adds initial files]

This commit is contained in:
2026-01-20 13:48:13 -03:00
parent 12176c50c1
commit 6026870c5c
16 changed files with 1316 additions and 0 deletions

14
infra/ecr/outputs.tf Normal file
View File

@@ -0,0 +1,14 @@
output "repository_url" {
description = "ECR repository URL"
value = aws_ecr_repository.app.repository_url
}
output "repository_arn" {
description = "ECR repository ARN"
value = aws_ecr_repository.app.arn
}
output "repository_name" {
description = "ECR repository name"
value = aws_ecr_repository.app.name
}