CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsData between ECS host and EFS server is not encrypted in transit.
Set volume.efs_volume_configuration.transit_encryption
attribute to ENABLED
.
resource "aws_ecs_task_definition" "allowed" {
family = "service"
container_definitions = var.container_def
volume {
name = "service-storage"
efs_volume_configuration {
file_system_id = "test"
root_directory = "/opt/data"
transit_encryption = "ENABLED"
transit_encryption_port = 2999
authorization_config {
access_point_id = "test"
iam = "ENABLED"
}
}
}
}
Set Properties.Volumes.EFSVolumeConfiguration.TransitEncryption
attribute to ENABLED
.