NIFCLOUD LB using insecure TLS policy ID 이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다. Id: terraform-nifcloud-load-balancer-use-insecure-tls-policy-id
Provider: Nifcloud
Platform: Terraform
Severity: Medium
Category: Encryption
Learn More Description The load balancer uses an insecure TLS policy. This rule flags nifcloud_load_balancer resources that either omit ssl_policy_id or set ssl_policy_id to an outdated policy identifier (1, 2, 3, 5, 8). Resources must use TLS v1.2+ for secure encryption.
Compliant Code Examples resource "nifcloud_load_balancer" "negative" {
load_balancer_name = "example"
instance_port = 443
load_balancer_port = 443
ssl_policy_id = "4"
}
Non-Compliant Code Examples resource "nifcloud_load_balancer" "positive" {
load_balancer_name = "example"
instance_port = 443
load_balancer_port = 443
}
resource "nifcloud_load_balancer" "positive" {
load_balancer_name = "example"
instance_port = 443
load_balancer_port = 443
ssl_policy_name = "1"
}