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 applicationsMySQL database instances have the option for NOT having a password for the administrative/root user. This is not recommended; a password should be set to ensure that only authorized users have administrative privileges.
Set the name
attribute to a username and the password
attribute to a strong password.
resource "google_sql_user" "non_admin" {
instance = google_sql_database_instance.no_default_admin.name
name = "yourusernamegoeshere"
password = "yoursuperstrongpasswordgoeshere"
host = "example.com"
}