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 applicationsAn outdated TLS version might lead to data leakage or manipulation.
Set minimumTlsVersion
to 1.2
.
Set minimum_tls_version
attribute to 1.2
.
Example configuration:
resource "azurerm_redis_cache" "allow" {
name = "example-cache573a"
location = azurerm_resource_group.example573.location
resource_group_name = azurerm_resource_group.example573.name
capacity = 2
family = "C"
sku_name = "Standard"
enable_non_ssl_port = false
minimum_tls_version = "1.2"
redis_configuration {
}
}