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 applicationsClient certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.
Set properties.clientCertEnabled
attribute to true
.
Set the client_cert_enabled
attribute to true
.
Example configuration:
resource "azurerm_app_service" "app_service_with_client_cert" {
name = "app-service-with-auth"
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
client_cert_enabled = true
}