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 in transit is vulnerable to interception and manipulation.
Set properties.enableNonSslPort
attribute to false
.
Set enable_non_ssl_port
port to false
.
resource "azurerm_redis_cache" "allow" {
name = "example570a-cache"
location = azurerm_resource_group.example570a.location
resource_group_name = azurerm_resource_group.example570a.name
capacity = 2
family = "P"
sku_name = "Premium"
enable_non_ssl_port = false
minimum_tls_version = "1.2"
redis_configuration {
}
}