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 applicationsBy passing role information to an EC2 instance at launch instead of using IAM access keys, you can limit the risk of access key exposure and help prevent a malicious user from compromising the instance.
Set the iam_instance_profile
attribute to the name of an IAM instance profile.
resource "aws_instance" "valid_instance" {
ami = "ami-0323c3dd2da7fabcd"
instance_type = "t2.micro"
iam_instance_profile = "${aws_iam_instance_profile.new_profile.name}"
}
resource "aws_iam_instance_profile" "new_profile" {
name = "new_profile"
role = "${aws_iam_role.new_role.name}"
}