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 applicationsSecurity Center alerts ensure that the appropriate individuals in an organization are notified via email when issues occur, speeding up time to remediation. Subscription owners should receive these alerts so they can triage and remediate issues appropriately.
Set the alertNotifications
and alertsToAdmins
attributes to On
.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Security/securityContacts",
"apiVersion": "2017-08-01-preview",
"name": "contact-allowed",
"location": "[resourceGroup().location]",
"properties": {
"email": "contact@example.com",
"alertNotifications": "On",
"alertsToAdmins": "On"
}
}
]
}
Set the alert_notifications
and alerts_to_admins
attributes to true
.
resource "azurerm_security_center_contact" "allowed" {
name = "contact"
email = "contact@example.com"
phone = "+1-555-555-5555"
alert_notifications = true
alerts_to_admins = true
}