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 applicationsThe content could be intercepted and manipulated in transit.
Set properties.isHttpAllowed
to false
.
Set is_http_allowed
attribute to false
.
resource "azurerm_cdn_endpoint" "allowed" {
name = "example-cdn-endpoint506"
profile_name = azurerm_cdn_profile.example506.name
location = azurerm_resource_group.example506.location
resource_group_name = azurerm_resource_group.example506.name
is_http_allowed = false
is_https_allowed = true
origin {
name = "example506"
host_name = "www.contoso.com"
}
}