# Ingress Missing TLS Configuration - ID: kubernetes-ingress-missing-tls - Severity: HIGH - CWE: CWE-319 (CWE-319) - Languages: Kubernetes, YAML - Frameworks: kubernetes ## Description Detects Kubernetes Ingress resources without TLS configuration. ## Detection Message Ingress exposes HTTP traffic without TLS encryption ## Remediation Configure TLS for Ingress resources. ```yaml spec: tls: - hosts: [example.com] secretName: example-tls ``` Learn more: https://shoulder.dev/learn/kubernetes/cwe-319/ingress-missing-tls ## Documentation [object Object] ## Related Rules - **Echo Running Without TLS** [HIGH]: - **Fiber Running Without TLS** [HIGH]: - **Gin Running Without TLS** [LOW]: - **Insecure TLS Verification Disabled** [HIGH]: - **HTTP Used Instead of HTTPS** [HIGH]: