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 applicationsIncreases attack vectors of kubernetes cluster.
Set properties.addonProfiles.omsagent.enabled
attribute to true
.
Set addon_profile.kube_dashboard
attribute to false
.
resource "azurerm_kubernetes_cluster" "allowed" {
name = "example-aks1"
location = azurerm_resource_group.example472.location
resource_group_name = azurerm_resource_group.example472.name
dns_prefix = "exampleaks1"
default_node_pool {
name = "default"
node_count = 1
vm_size = "Standard_D2_v2"
}
identity {
type = "SystemAssigned"
}
tags = {
Environment = "Production"
}
kubernetes_version = "1.24"
addon_profile {
kube_dashboard {
enabled = false
}
}
}