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 applicationsAWS Global Accelerator is a networking service that helps you improve the availability, performance, and security of your public applications. Flow logs enable you to capture information about the IP address traffic going to and from network interfaces in your accelerator in AWS Global Accelerator.
Set the flow_logs_enabled
attribute to true
in the resource aws_globalaccelerator_accelerator
.
resource "aws_globalaccelerator_accelerator" "allow" {
name = "allow-global-accelerator"
ip_address_type = "IPV4"
enabled = true
attributes {
flow_logs_enabled = true
flow_logs_s3_bucket = "bucket-flow-logs"
flow_logs_s3_prefix = "flow-logs/"
}
}