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 applicationsIn the event of hardware failure or other disasters, data may be lost. Note that this is only available to Premium Service Tier Caches (SKUs).
Set properties.redisConfiguration.rdb-backup-enabled
to true
.
Set redis_configuration.rdb_backup_enabled
to true
.
resource "azurerm_redis_cache" "allowed" {
name = "example-allowed572"
location = azurerm_resource_group.example572.location
resource_group_name = azurerm_resource_group.example572.name
capacity = 2
family = "P"
sku_name = "Premium"
enable_non_ssl_port = false
minimum_tls_version = "1.2"
redis_configuration {
rdb_backup_enabled = "true"
rdb_storage_connection_string = "DefaultEndpointsProtocol=https;BlobEndpoint=${azurerm_storage_account.example57.primary_blob_endpoint};AccountName=${azurerm_storage_account.example57.name};AccountKey=${azurerm_storage_account.example57.primary_access_key}"
rdb_backup_frequency = "30"
}
}