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 applicationsAn outdated TLS version might lead to data leakage or manipulation.
Set minimalTlsVersion
to TLS1_2
.
Set ssl_minimal_tls_version_enforced
to TLS1_2
.
resource "azurerm_postgresql_server" "allowed" {
name = "example-psqlserver-550"
location = azurerm_resource_group.example550.location
resource_group_name = azurerm_resource_group.example550.name
administrator_login = "psqladmin"
administrator_login_password = "H@Sh1CoR3!"
sku_name = "GP_Gen5_4"
version = "11"
storage_mb = 640000
backup_retention_days = 7
geo_redundant_backup_enabled = true
auto_grow_enabled = true
public_network_access_enabled = false
ssl_enforcement_enabled = true
ssl_minimal_tls_version_enforced = "TLS1_2"