Skip to content

Instantly share code, notes, and snippets.

@estenssoros
Created September 20, 2023 08:59
Show Gist options
  • Save estenssoros/8670e8325a82c3fc9058ba431e2b77e7 to your computer and use it in GitHub Desktop.
Save estenssoros/8670e8325a82c3fc9058ba431e2b77e7 to your computer and use it in GitHub Desktop.
Docker, ECR, Elastic Beanstalk, & Terraform ecr.tf
resource "aws_ecr_repository" "app" {
name = local.common_name
image_tag_mutability = "MUTABLE"
image_scanning_configuration {
scan_on_push = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment