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 applicationsBasic VM sizes are not suitable for production workloads or intensive development workloads and might lead to undesired behavior under pressure.
Set properties.hardwareProfile.vmSize
to greater than Basic*
.
Set the virtual machine size
to greater than Basic*
.
# azurerm_linux_virtual_machine example
resource "azurerm_linux_virtual_machine" "allowed" {
name = "example-machine"
resource_group_name = var.azure_653_sku_size
location = var.azure_653_sku_size
size = "Standard_F2"
admin_username = "adminuser"
network_interface_ids = [
var.azure_653_sku_size
]
os_disk {
caching = "ReadWrite"
storage_account_type = "Standard_LRS"
}
}
# azurerm_windows_virtual_machine
resource "azurerm_windows_virtual_machine" "allowed" {
name = "example-machine"
resource_group_name = var.azure_653_sku_size
location = var.azure_653_sku_size
size = "Standard_F2"
admin_username = "adminuser"
admin_password = "P@$$w0rd1234!"
network_interface_ids = [
var.azure_653_sku_size
]
os_disk {
caching = "ReadWrite"
storage_account_type = "Standard_LRS"
}
}