Beta - Nifcloud LB use HTTP port
이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Id: 94e47f3f-b90b-43a1-a36d-521580bae863
Cloud Provider: Nifcloud
Platform: Terraform
Severity: High
Category: Insecure Configurations
Learn More
Description
The nifcloud_load_balancer is configured to use the HTTP port (load_balancer_port is set to 80).
It should be switched to HTTPS to benefit from TLS security features.
The rule reports an IncorrectValue issue when load_balancer_port equals 80.
Compliant Code Examples
resource "nifcloud_load_balancer" "negative" {
load_balancer_name = "example"
instance_port = 443
load_balancer_port = 443
}
Non-Compliant Code Examples
resource "nifcloud_load_balancer" "positive" {
load_balancer_name = "example"
instance_port = 80
load_balancer_port = 80
}