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 applicationsWith TDE, data is encrypted at rest with a symmetric data encryption key. Using Azure Key Vault customer-managed keys allows users to have additional control over TDE encryption keys, and restricts who can access them and when.
Set the serverKeyType
attribute in Microsoft.Sql/servers/encryptionProtector
resource to AzureKeyVault
, set the serverKeyName
attribute in Microsoft.Sql/servers/encryptionProtector
resource to a name of Microsoft.Sql/servers/keys
resource.
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.Sql/servers",
"apiVersion": "2022-05-01-preview",
"name": "allowed-1",
"location": "[resourceGroup().location]",
"tags": {
"environment": "production"
},
"identity": {
"type": "SystemAssigned"
},
"properties": {
"administratorLogin": "mradministrator",
"administratorLoginPassword": "thisIsDog11",
"version": "12.0"
}
},
{
"type": "Microsoft.Sql/servers/keys",
"apiVersion": "2022-05-01-preview",
"name": "allowed-1/example-keyvault703_kv1_48f8f7aaf25a48b5adf181d1b7457d48",
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', 'allowed-1')]",
"[resourceId('Microsoft.KeyVault/vaults/keys', 'example-keyvault703', 'kv1')]"
],
"properties": {
"serverKeyType": "AzureKeyVault",
"uri": "[reference(resourceId('Microsoft.KeyVault/vaults/keys', 'example-keyvault703', 'kv1'), '2022-07-01', 'Full').properties.keyUriWithVersion]"
}
},
{
"type": "Microsoft.Sql/servers/encryptionProtector",
"apiVersion": "2022-05-01-preview",
"name": "allowed-1/current",
"dependsOn": [
"[resourceId('Microsoft.Sql/servers', 'allowed-1')]",
"[resourceId('Microsoft.Sql/servers/keys', 'allowed-1', 'example-keyvault703_kv1_48f8f7aaf25a48b5adf181d1b7457d48')]"
],
"properties": {
"autoRotationEnabled": "true",
"serverKeyName": "example-keyvault703_kv1_48f8f7aaf25a48b5adf181d1b7457d48",
"serverKeyType": "AzureKeyVault"
}
},
]
}
Set the key_vault_key_id
attribute to a valid Key Vault key ID.
resource "azurerm_mssql_server_transparent_data_encryption" "validtde1" {
server_id = azurerm_sql_server.validserver1.id
key_vault_key_id = azurerm_key_vault_key.kvk1.id
}