LOW
Source
Trivy
ID
AVD-AWS-0049

Missing description for security group/security group rule.

Security groups and security group rules should include a description for auditing purposes. Simplifies auditing, debugging, and managing security groups.

Impact

Follow the appropriate remediation steps below to resolve the issue.

Add descriptions for all security groups and rules

1
2
3
4
5
Resources:
  GoodExample:
    Type: AWS::ElastiCache::SecurityGroup
    Properties:
      Description: Some description

Add descriptions for all security groups and rules

1
2
3
resource "aws_elasticache_security_group" "good_example" {
  description = "something"
}