14 lines
339 B
HCL
14 lines
339 B
HCL
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
|
|
} |