LOW
Source
Trivy
ID
AVD-NIF-0002

Missing description for security group.

Security groups should include a description for auditing purposes.

Simplifies auditing, debugging, and managing security groups.

Impact

Descriptions provide context for the firewall rule reasons

Follow the appropriate remediation steps below to resolve the issue.

Add descriptions for all security groups

1
2
3
4
5
 resource "nifcloud_security_group" "good_example" {
   group_name  = "http"
   description = "Allow inbound HTTP traffic"
 }