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 applicationsWeb apps can be accessed by anyone using non-secure HTTP links by default. HTTP content could be intercepted and manipulated in transit.
Set properties.httpsOnly
attribute to true
.
Set the https_only
attribute to true
.
resource "azurerm_app_service" "app_service_https_only" {
name = "app-service-https-only"
location = "${azurerm_resource_group.main.location}"
resource_group_name = "${azurerm_resource_group.main.name}"
app_service_plan_id = "${azurerm_app_service_plan.app_service_plan1.id}"
https_only = true
}