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 applicationsShared volumes can overwrite data on the host, and are considered dangerous.
Remove mountPropagation
attribute, or set value to None
.
Remove mount_propagation
attribute from container.volume_mount
, or set value to None
.
resource "kubernetes_pod" "allowed" {
metadata {
name = "example-pod624"
}
spec {
container {
name = "example-container624"
image = "nginx"
volume_mount {
name = "my-volume"
mount_path = "/data"
mount_propagation = "None"
}
}
volume {
name = "my-volume"
empty_dir {}
}
}
}