一键导入
security-scan
Run Checkov security scan on Terraform modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run Checkov security scan on Terraform modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
View and troubleshoot service logs and pod status
Review Terraform code for security, best practices, and conventions
Roll back a failed deployment to the previous revision
Run health checks against deployed services
| name | security-scan |
| description | Run Checkov security scan on Terraform modules |
| disable-model-invocation | true |
| argument-hint | [module|all] |
Run a Checkov security scan on Terraform code and categorize findings.
module — Specific module to scan (e.g., vpc, eks, rds) or all for everythingallDetermine the scan target:
terraform/modules/{module}/all → terraform/Verify the target directory exists and contains .tf files.
Run Checkov scan using the MCP tool (preferred) or CLI:
RunCheckovScan with the target directorycheckov -d {target} --framework terraform --output jsonCategorize findings into severity levels:
Present results:
## Security Scan: {target}
Passed: {N} | Failed: {N} | Skipped: {N}
### Critical ({N})
- CKV_AWS_xxx: {description} — {file}
### High ({N})
...
### Recommended Actions
1. {First thing to fix}
2. {Second thing to fix}
If there are Critical findings, emphasize: "Fix critical issues before applying to any environment."