Global Accelerator Flow Logs Disabled
- Query id: 96e8183b-e985-457b-90cd-61c0503a3369
- Query name: Global Accelerator Flow Logs Disabled
- Platform: Terraform
- Severity: Low
- Category: Observability
- URL: Github
Description¶
Global Accelerator should have flow logs enabled
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Postitive test num. 1 - tf file
resource "aws_globalaccelerator_accelerator" "positive1" {
name = "Example"
ip_address_type = "IPV4"
enabled = true
}
Postitive test num. 2 - tf file
resource "aws_globalaccelerator_accelerator" "positive2" {
name = "Example"
ip_address_type = "IPV4"
enabled = true
attributes {
flow_logs_s3_bucket = "example-bucket"
flow_logs_s3_prefix = "flow-logs/"
}
}
Postitive test num. 3 - tf file
resource "aws_globalaccelerator_accelerator" "positive3" {
name = "Example"
ip_address_type = "IPV4"
enabled = true
attributes {
flow_logs_enabled = false
}
}