원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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."