10 lines
176 B
HCL
10 lines
176 B
HCL
resource "aws_ecr_repository" "myapp-repo" {
|
|
name = "myapp"
|
|
|
|
# defaults
|
|
image_tag_mutability = "MUTABLE"
|
|
image_scanning_configuration {
|
|
scan_on_push = true
|
|
}
|
|
}
|