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 applicationsGoogle Cloud encrypts all data at rest by default with Google-generated keys. However, for business critical instances, users may want to use customer-supplied encryption keys for an additional layer of protection as data encrypted with customer-supplied encryption keys cannot be accessed by Google.
Set the disk_encryption_key.raw_key
attribute to a customer-supplied encryption key.
Example configuration:
resource "google_compute_disk" "allow" {
name = "test-disk"
type = "pd-ssd"
zone = "us-central1-a"
image = "debian-10-buster-v20220920"
labels = {
environment = "dev"
}
physical_block_size_bytes = 4096
disk_encryption_key {
raw_key = "dummy_key"
}
}