11 lines
213 B
HCL
11 lines
213 B
HCL
output "repository_name" {
|
|
value = aws_ecr_repository.this.name
|
|
}
|
|
|
|
output "repository_url" {
|
|
value = aws_ecr_repository.this.repository_url
|
|
}
|
|
|
|
output "repository_arn" {
|
|
value = aws_ecr_repository.this.arn
|
|
}
|