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 applicationsSetting the contact email ensures that the proper people are aware of any potential compromise.
Set the emails
attribute to a valid email address.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.Security/securityContacts",
"apiVersion": "2020-01-01-preview",
"name": "allow",
"properties": {
"alertNotifications": {
"minimalSeverity": "Medium",
"state": "On"
},
"emails": "contact@example.com",
"notificationsByRole": {
"roles": [ "AccountAdmin" ],
"state": "On"
},
"phone": "+1-555-555-5555"
}
}
]
}
Set the email
attribute to a valid email address.
resource "azurerm_security_center_contact" "example677A" {
name = "contact677A"
email = "contact@example.com"
phone = "+1-555-555-5555"
alert_notifications = true
alerts_to_admins = true
}