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,)