From 9a8e1c7f159fb89d418367391ecf40c6a3d4a9f9 Mon Sep 17 00:00:00 2001 From: Taylor <28880387+tsmithv11@users.noreply.github.com> Date: Sun, 16 Jun 2024 20:10:42 -0700 Subject: [PATCH] fix(terraform): Update CKV_AWS_224 title (#6435) Update CKV_AWS_224 title --- .../checks/resource/aws/ECSClusterLoggingEncryptedWithCMK.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkov/terraform/checks/resource/aws/ECSClusterLoggingEncryptedWithCMK.py b/checkov/terraform/checks/resource/aws/ECSClusterLoggingEncryptedWithCMK.py index 4f39ffc68a0..3ed728d7ecb 100644 --- a/checkov/terraform/checks/resource/aws/ECSClusterLoggingEncryptedWithCMK.py +++ b/checkov/terraform/checks/resource/aws/ECSClusterLoggingEncryptedWithCMK.py @@ -8,7 +8,7 @@ class ECSClusterLoggingEncryptedWithCMK(BaseResourceCheck): def __init__(self) -> None: - name = "Ensure ECS Cluster logging uses CMK" + name = "Ensure ECS Cluster logging is enabled and client to container communication uses CMK" id = "CKV_AWS_224" supported_resources = ("aws_ecs_cluster",) categories = (CheckCategories.ENCRYPTION,)