with one click
security-scan
Run Checkov security scan on Terraform modules
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run Checkov security scan on Terraform modules
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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."