LOW
Source
Trivy
ID
AVD-NIF-0019

The elb has common private network

When handling sensitive data between servers, please consider using a private LAN to isolate the private side network from the shared network.

Impact

Follow the appropriate remediation steps below to resolve the issue.

Use private LAN

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
resource "nifcloud_elb" "good_example" {
  elb_name          = "foobar"
  availability_zone = "east-11"
  instance_port     = 80
  protocol          = "HTTP"
  lb_port           = 80

  network_interface {
    network_id = nifcloud_private_lan.main.id
  }
}