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 applicationsThe Kubernetes API server could be accessible by anyone, which increases attack vector reachability.
Set properties.apiServerAccessProfile.authorizedIPRanges
attribute to specific range e.g. 10.0.0.0/16.
Set api_server_authorized_ip_ranges
attribute to specific range, e.g. 10.0.0.0/16
.
api_server_authorized_ip_ranges
attribute to a specific range. Note the api_server_authorized_ip_ranges
attribute was deprecated in v3.39.0.api_server_access_profile
.authorized_ip_ranges
attribute to a specific range.# For AzureRM provider < v4.0.0
resource "azurerm_kubernetes_cluster" "allowed" {
name = "example-aks514"
location = azurerm_resource_group.example514.location
resource_group_name = azurerm_resource_group.example514.name
dns_prefix = "exampleaks514"
default_node_pool {
name = "default"
node_count = 1
vm_size = "Standard_D2_v2"
}
identity {
type = "SystemAssigned"
}
api_server_authorized_ip_ranges = ["10.0.0.0/16"]
}
# For AzureRM provider >= v4.0.0
resource "azurerm_kubernetes_cluster" "allowed" {
name = "example-aks514"
location = azurerm_resource_group.example514.location
resource_group_name = azurerm_resource_group.example514.name
dns_prefix = "exampleaks514"
default_node_pool {
name = "default"
node_count = 1
vm_size = "Standard_D2_v2"
}
identity {
type = "SystemAssigned"
}
api_server_access_profile {
authorized_ip_ranges = ["10.0.0.0/16"]
}
}