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 secure transfer option enhances the security of a storage account by only allowing requests to the storage account by a secure connection.
Set properties.supportsHttpsTrafficOnly
attribute to true
.
Set the enable_https_traffic_only
attribute to true
.
resource "azurerm_storage_account" "allowed" {
name = "storageaccountname"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
account_tier = "Standard"
account_replication_type = "GRS"
enable_https_traffic_only = true
}