계: Environment

이 섹션에는 소스 코드 외부에 있지만 제작 중인 제품의 보안에는 여전히 중요한 내용이 모두 포함되어 있습니다. 이 섹션에서 다루는 문제들은 소스 코드와 직접적으로 관련이 없기 때문에 나머지 섹션과 분리했습니다.

GCP Terraform Misconfiguration: Weak GKE Cluster Network Management

Abstract
이 Terraform 구성은 클러스터 네트워크 모드를 VPC 네이티브로 설정하지 않습니다.
Explanation
GKE는 경로 기반과 VPC 네이티브라는 두 가지 클러스터 네트워크 모드를 지원합니다. VPC 네이티브 클러스터는 별칭 IP 주소 범위를 사용하여 노드의 한 Pod에서 다른 Pod로 트래픽을 라우팅합니다. 따라서 Pod에 정확한 IP 기반 정책 및 방화벽 규칙을 적용할 수 있습니다. 반대로, 전체 노드는 경로 기반 클러스터에서 가장 세밀한 수준의 제어입니다.

예제 1: 다음 예제 Terraform 구성은 networking_modeROUTES로 설정하여 VPC 네이티브 클러스터를 활성화하지 않습니다.

resource "google_container_cluster" "cluster_demo" {
...
networking_mode = "ROUTES"
..
}
References
[1] HashiCorp google_container_cluster
[2] Google Cloud Creating a VPC-native cluster
[3] Standards Mapping - CIS Google Kubernetes Engine Benchmark Recommendation 5.6.2
[4] Standards Mapping - Common Weakness Enumeration CWE ID 923
[5] Standards Mapping - FIPS200 CM
[6] Standards Mapping - NIST Special Publication 800-53 Revision 4 CM-6 Configuration Settings (P1), SC-7 Boundary Protection (P1)
[7] Standards Mapping - NIST Special Publication 800-53 Revision 5 CM-6 Configuration Settings, SC-7 Boundary Protection
[8] Standards Mapping - OWASP API 2023 API8 Security Misconfiguration
[9] Standards Mapping - OWASP Application Security Verification Standard 4.0 1.14.1 Configuration Architectural Requirements (L2 L3)
[10] Standards Mapping - OWASP Top 10 2017 A6 Security Misconfiguration
[11] Standards Mapping - OWASP Top 10 2021 A05 Security Misconfiguration
[12] Standards Mapping - Payment Card Industry Data Security Standard Version 3.2.1 Requirement 1.2.1
[13] Standards Mapping - Payment Card Industry Data Security Standard Version 4.0 Requirement 1.4.2
[14] Standards Mapping - Payment Card Industry Data Security Standard Version 4.0.1 Requirement 1.4.2
desc.structural.hcl.gcp_terraform_misconfiguration_weak_gke_cluster_network_management