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 scope of key usage cannot be controlled via access policies.
Set properties.encryption.keyName
attribute to customer managed key.
Set customer_managed_key_id
attribute to a valid Key Vault key ID.
resource "azurerm_data_factory" "allowed" {
name = "kvdf526"
location = azurerm_resource_group.example526.location
resource_group_name = azurerm_resource_group.example526.name
customer_managed_key_id = azurerm_key_vault_key.generated.id
customer_managed_key_identity_id = azurerm_user_assigned_identity.identity526.id
identity {
type = "UserAssigned"
identity_ids = [azurerm_user_assigned_identity.identity526.id]
}
depends_on = [time_sleep.wait_120_seconds]
}