add config for ecr repo and remote backend
This commit is contained in:
9
terraform/ecr-repo.tf
Normal file
9
terraform/ecr-repo.tf
Normal file
@@ -0,0 +1,9 @@
|
||||
resource "aws_ecr_repository" "myapp-repo" {
|
||||
name = "myapp"
|
||||
|
||||
# defaults
|
||||
image_tag_mutability = "MUTABLE"
|
||||
image_scanning_configuration {
|
||||
scan_on_push = true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user