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 applicationsGranting permission to perform any action is against the principle of least privilege.
Set properties.permissions
attribute to specific actions only, e.g Microsoft.Storage/storageAccounts/blobServices/containers/read
.
Set permissions.actions
attribute to specific actions only, e.g Microsoft.Storage/storageAccounts/blobServices/containers/read
.
resource "azurerm_role_definition" "allowed1" {
name = "my-custom-role503v1"
scope = data.azurerm_subscription.primary.id
description = "This is a custom role created via Terraform"
permissions {
actions = ["Microsoft.Storage/storageAccounts/blobServices/containers/read"]
not_actions = []
}
assignable_scopes = [data.azurerm_subscription.primary.id]
}