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 applicationsFailure to enable Role-Based Access Control (RBAC) on Azure Key Vault may result in unauthorized access to keys, secrets, and certificates. RBAC ensures that only users, groups, or service principals with explicitly granted permissions can manage or access Key Vault resources, thereby minimizing the risk of privilege escalation and data breaches.
Set the enable_rbac_authorization
attribute to true
for the resource azurerm_key_vault
.
resource "azurerm_key_vault" "allow" {
name = "snyk00790-vaulta1"
location = data.azurerm_resource_group.snyk.location
resource_group_name = data.azurerm_resource_group.snyk.name
tenant_id = data.azurerm_client_config.current.tenant_id
sku_name = "standard"
enable_rbac_authorization = true
soft_delete_retention_days = 7
}