From 44aabbd6a7accb31af99229722c6a844d0756c83 Mon Sep 17 00:00:00 2001 From: Benettonkkb Date: Thu, 5 Feb 2026 00:05:09 +0000 Subject: [PATCH] Add Project tag to ECR repo --- terraform/modules/ecr/main.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terraform/modules/ecr/main.tf b/terraform/modules/ecr/main.tf index f519ce5..3c06a92 100644 --- a/terraform/modules/ecr/main.tf +++ b/terraform/modules/ecr/main.tf @@ -14,6 +14,9 @@ variable "project_name" { resource "aws_ecr_repository" "this" { name = var.project_name image_tag_mutability = "MUTABLE" + tags = { + project = var.project_name + } image_scanning_configuration { scan_on_push = true