Beta - Nifcloud RDB has common private network
이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Id: 9bf57c23-fbab-4222-85f3-3f207a53c6a8
Cloud Provider: Nifcloud
Platform: Terraform
Severity: Low
Category: Networking and Firewall
Learn More
Description
nifcloud_db_instance is configured to use the common private LAN net-COMMON_PRIVATE. The resource’s network_id should be a private LAN that isolates the private-side network from the shared network. This rule identifies nifcloud_db_instance resources that are using the common private network.
Compliant Code Examples
resource "nifcloud_db_instance" "negative" {
identifier = "example"
instance_class = "db.large8"
network_id = nifcloud_private_lan.main.id
}
Non-Compliant Code Examples
resource "nifcloud_db_instance" "positive" {
identifier = "example"
instance_class = "db.large8"
network_id = "net-COMMON_PRIVATE"
}