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 applicationsUnencrypted connections are vulnerable to information disclosure or manipulation.
Set sslEnforcement
to Enabled
.
Set ssl_enforcement_enabled
attribute to true
.
resource "azurerm_mysql_server" "example549a" {
name = "example549a-mysqlserver"
location = azurerm_resource_group.example549a.location
resource_group_name = azurerm_resource_group.example549a.name
administrator_login = "mysqladminun"
administrator_login_password = "H@Sh1CoR3!"
sku_name = "B_Gen5_2"
storage_mb = 5120
version = "5.7"
auto_grow_enabled = true
backup_retention_days = 7
geo_redundant_backup_enabled = false
infrastructure_encryption_enabled = false
public_network_access_enabled = true
ssl_enforcement_enabled = true
ssl_minimal_tls_version_enforced = "TLS1_2"
}