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

Metadata

Id: 940ddce2-26bd-4e31-a9b4-382714f73231

Cloud Provider: Nifcloud

Platform: Terraform

Severity: Low

Category: Networking and Firewall

Learn More

Description

Missing description for DB security group.

Resources of type nifcloud_db_security_group should include a description attribute for auditing and identification. This rule flags nifcloud_db_security_group resources that do not define a description.

Compliant Code Examples

resource "nifcloud_db_security_group" "negative" {
  group_name        = "example"
  availability_zone = "east-11"
  description       = "Allow from app traffic"
}

Non-Compliant Code Examples

resource "nifcloud_db_security_group" "positive" {
  group_name        = "example"
  availability_zone = "east-11"
}