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 applicationsLack of insight into an AKS cluster might prevent incident response based on crucial log or hardware utilization information.
Set attribute properties.addonProfiles.omsagent.enabled
to true
.
Set addon_profile.oms_agent.enabled
attribute to true
.
resource "azurerm_kubernetes_cluster" "allow" {
name = "example-aks482"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
dns_prefix = "example-aks482"
default_node_pool {
name = "default"
node_count = 1
vm_size = "Standard_D2_v2"
}
identity {
type = "SystemAssigned"
}
addon_profile {
oms_agent {
enabled = true
log_analytics_workspace_id = azurerm_log_analytics_workspace.example.id
}
}
}