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 applicationsDefault network will be automatically created for the project.
Set auto_create_network
attribute to false
.
resource "google_project" "project-allowed" {
name = "project-g-405"
project_id = "project-id-g-405"
auto_create_network = false
billing_account = "01A182-E5EB48-AA7FB2"
}
resource "google_project_service" "compute" {
service ="compute.googleapis.com"
project = google_project.project-allowed.project_id
depends_on = ["google_project.project-allowed"]
}