Beta - Nifcloud LB use HTTP port
This product is not supported for your selected
Datadog site. (
).
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
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
}