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 applicationsClient has unauthorized read access to storage containers and blobs.
Set properties.PublicAccess
to None
.
Set allow_nested_items_to_be_public
to false
.
resource "azurerm_storage_account" "allowed" {
name = "storageaccountname535a"
resource_group_name = azurerm_resource_group.example535.name
location = azurerm_resource_group.example535.location
account_tier = "Standard"
account_replication_type = "GRS"
allow_nested_items_to_be_public = false
}