원클릭으로
terraform-plan
Run terraform init + plan for an environment and show summary
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run terraform init + plan for an environment and show summary
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 Checkov security scan on Terraform modules
| name | terraform-plan |
| description | Run terraform init + plan for an environment and show summary |
| disable-model-invocation | true |
| argument-hint | [env] |
Run Terraform init and plan for the specified environment.
env — Target environment: dev or prod (default: dev)Determine the environment directory:
dev → terraform/environments/dev/prod → terraform/environments/prod/Run terraform init in the environment directory:
cd terraform/environments/{env} && terraform init
Run terraform plan and save the plan:
cd terraform/environments/{env} && terraform plan -out plan.out
Show a summary of the plan output:
If the plan shows destroys, warn the user explicitly:
WARNING: This plan will DESTROY {N} resource(s). Review carefully before applying.
-out plan.out so the exact plan can be applied later