From f433ff54e05e59af80a5fe4a8246ae33e439787e Mon Sep 17 00:00:00 2001 From: Abhi Yerra Date: Wed, 20 Mar 2024 16:04:09 -0700 Subject: [PATCH] Add encryption --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index 5e92619..04ad289 100644 --- a/main.tf +++ b/main.tf @@ -5,6 +5,10 @@ resource "aws_ecr_repository" "this" { image_scanning_configuration { scan_on_push = true } + + encryption_configuration { + encryption_type = "AES256" + } }