This product is not supported for your selected Datadog site. ().

Metadata

Id: 41c127a9-3a85-4bc3-a333-ed374eb9c3e4

Cloud Provider: Nifcloud

Platform: Terraform

Severity: Low

Category: Networking and Firewall

Learn More

Description

Missing description for nifcloud_security_group resources. The description attribute must be present to support auditing and to document the purpose and intent of the security group. Resources without a description hinder security reviews and operational tracing.

Compliant Code Examples

resource "nifcloud_security_group" "negative" {
  group_name  = "http"
  description = "Allow inbound HTTP traffic"
}

Non-Compliant Code Examples

resource "nifcloud_security_group" "positive" {
  group_name  = "http"
}