From 1834eb94f9a3b22120111cfb9efa60907a41f320 Mon Sep 17 00:00:00 2001 From: "bridgecrew[bot]" <60663194+bridgecrew[bot]@users.noreply.github.com> Date: Thu, 4 Mar 2021 15:47:45 +0000 Subject: [PATCH] Bridgecrew bot fix aws_s3_bucket.financials config --- terraform/aws/s3.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/terraform/aws/s3.tf b/terraform/aws/s3.tf index c0f2b9651c..6af29a520f 100644 --- a/terraform/aws/s3.tf +++ b/terraform/aws/s3.tf @@ -34,6 +34,13 @@ resource "aws_s3_bucket" "financials" { Environment = local.resource_prefix.value } + server_side_encryption_configuration { + rule { + apply_server_side_encryption_by_default { + sse_algorithm = "AES256" + } + } + } } resource "aws_s3_bucket" "operations" {