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 applicationsEBS volume snapshots may contain sensitive or private data. Encryption of backups should be enabled to protect data from theft or other malicious activity.
Add or update the aws_ebs_volume
attribute encrypted
and set it to true
to ensure the aws_ebs_snapshot
is encrypted.
resource "aws_ebs_volume" "volume1" {
availability_zone = "us-east-1a"
size = 40
encrypted = true
tags {
Name = "volume1"
}
}
resource "aws_ebs_snapshot" "snapshot1" {
volume_id = "${aws_ebs_volume.volume1.id}"
tags = {
Name = "snapshot1"
}
}