Nifcloud ELB Using HTTP Protocol
- Query id: e2de2b80-2fc2-4502-a764-40930dfcc70a
- Query name: Nifcloud ELB Using HTTP Protocol
- Platform: Terraform
- Severity: Medium
- Category: Networking and Firewall
- CWE: 319
- URL: Github
Description¶
The ELB using HTTP protocol
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Positive test num. 1 - tf file
resource "nifcloud_elb" "positive" {
availability_zone = "east-11"
instance_port = 80
protocol = "HTTP"
lb_port = 80
network_interface {
network_id = "net-COMMON_GLOBAL"
is_vip_network = true
}
}
Positive test num. 2 - tf file
resource "nifcloud_elb" "positive" {
availability_zone = "east-11"
instance_port = 80
protocol = "HTTP"
lb_port = 80
network_interface {
network_id = "net-COMMON_GLOBAL"
is_vip_network = true
}
network_interface {
network_id = "net-COMMON_PRIVATE"
}
}