Prefer using secrets as files over secrets as environment variables (Automated)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-eks-v160-4.4.1 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Eks V160 4.4.1?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-eks-v160-4-4-1)More formats (shields.io, HTML) on the badges page.
---
name: cis-eks-v160-4.4.1
description: "Prefer using secrets as files over secrets as environment variables (Automated)"
category: cis-eks
version: "1.6.0"
author: cyberstrike-official
tags: [cis, eks, kubernetes, aws, secrets, environment-variables, volume-mounts, configuration]
cis_id: "4.4.1"
cis_benchmark: "CIS Amazon Elastic Kubernetes Service (EKS) Benchmark v1.6.0"
tech_stack: [kubernetes, aws, eks]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.4.1 Prefer using secrets as files over secrets as environment variables (Automated)
## Profile Applicability
- Level 1
## Description
Kubernetes supports mounting secrets as data volumes or as environment variables. Minimize the use of environment variable secrets.
## Rationale
It is reasonably common for application code to log out its environment (particularly in the event of an error). This will include any secret values passed in as environment variables, so secrets can easily be exposed to any user or entity who has access to the logs.
## Impact
Application code which expects to read secrets in the form of environment variables would need modification.
## Audit Procedure
Run the following command to find references to objects which use environment variables defined from secrets.
```bash
kubectl get all -o jsonpath='{range .items[?(@..secretKeyRef)]} {.kind} {.metadata.name} {"\n"}{end}' -A
```
## Remediation
If possible, rewrite application code to read secrets from mounted secret files, rather than from environment variables.
## Default Value
By default, secrets are not defined.
## References
1. https://kubernetes.io/docs/concepts/configuration/secret/#using-secrets
## Additional Information
Mounting secrets as volumes has the additional benefit that secret values can be updated without restarting the pod.
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.10 Encrypt Sensitive Data in Transit | | x | x |
| v7 | 14.4 Encrypt All Sensitive Information in Transit | | x | x |
| v7 | 14.8 Encrypt Sensitive Information at Rest | | | x |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!