이 제품은 선택한 Datadog 사이트에서 지원되지 않습니다. ().
이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Metadata

Id: e5071f76-cbe7-468d-bb2b-d10f02d2b713

Cloud Provider: Nifcloud

Platform: Terraform

Severity: Medium

Category: Backup

Learn More

Description

The RDB backup retention period is less than 2 days. The nifcloud_db_instance resource must include the backup_retention_period attribute set to at least 2 (days). Resources missing this attribute or with a value less than 2 will be reported as MissingAttribute or IncorrectValue.

Compliant Code Examples

resource "nifcloud_db_instance" "negative" {
  identifier              = "example"
  instance_class          = "db.large8"
  backup_retention_period = 5
}

Non-Compliant Code Examples

resource "nifcloud_db_instance" "positive" {
  identifier              = "example"
  instance_class          = "db.large8"
  backup_retention_period = 1
}
resource "nifcloud_db_instance" "positive" {
  identifier              = "example"
  instance_class          = "db.large8"
}