From 5cb60ddd8d1c052a2b1a987aa5f860ed8b4b12a0 Mon Sep 17 00:00:00 2001 From: SteveLinden Date: Mon, 16 Oct 2023 07:57:48 +0100 Subject: [PATCH] Additional checkov error reported --- test/unit-test/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit-test/main.tf b/test/unit-test/main.tf index 4a60cc2..6b7d79d 100644 --- a/test/unit-test/main.tf +++ b/test/unit-test/main.tf @@ -35,6 +35,7 @@ data "aws_iam_policy_document" "topic" { } } resource "aws_sns_topic" "topic" { + #checkov:skip=CKV_AWS_26: "Ensure all data stored in the SNS topic is encrypted" name = "s3-event-notification-topic" policy = data.aws_iam_policy_document.topic.json }