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 applicationsNew vulnerabilities may not be detected in a timely manner. This can leave the SQL server vulnerable to potential attack and exploitation.
Set properties.recurringScans.isEnabled
to true
.
Set recurring_scans.enabled
to true
. Attribute defaults to false.
resource "azurerm_mssql_server_vulnerability_assessment" "allow" {
server_security_alert_policy_id = azurerm_mssql_server_security_alert_policy.example546.id
storage_container_path = "${azurerm_storage_account.example546.primary_blob_endpoint}${azurerm_storage_container.example546.name}/"
storage_account_access_key = azurerm_storage_account.example546.primary_access_key
recurring_scans {
enabled = true
email_subscription_admins = true
emails = [
"email@example1.com",
"email@example2.com"
]
}
}