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 applicationsAuto Scaling groups that span two or more Availability Zones promote redundancy of data, which helps ensure availability and continuity during an adverse situation.
Set vpc_zone_identifier
to two or more subnets, or set availability_zones
to two or more Availability Zones.
# with vpc_zone_identifier
resource "aws_autoscaling_group" "tf_asg_example" {
name = "terraform-asg-example"
vpc_zone_identifier = [aws_subnet.subnet1.id, aws_subnet.subnet2.id]
launch_configuration = "${aws_launch_configuration.as_conf.name}"
min_size = 1
max_size = 2
lifecycle {
create_before_destroy = true
}
}
# with availability_zones
resource "aws_autoscaling_group" "example" {
availability_zones = ["us-east-1a", "us-east-1b"]
desired_capacity = 1
max_size = 1
min_size = 1
launch_template {
id = aws_launch_template.example.id
version = "$Latest"
}
}