원클릭으로
terraform-apply
Apply a saved Terraform plan with safety checks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Apply a saved Terraform plan with safety checks
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-apply |
| description | Apply a saved Terraform plan with safety checks |
| disable-model-invocation | true |
| argument-hint | [env] |
Apply a previously saved Terraform 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/Check that plan.out exists in the environment directory:
ls -la terraform/environments/{env}/plan.out
If it doesn't exist, tell the user to run /terraform-plan {env} first.
Show the plan summary by running:
cd terraform/environments/{env} && terraform show plan.out
Ask the user for explicit confirmation before applying:
Only after user confirms, apply the saved plan:
cd terraform/environments/{env} && terraform apply plan.out
After apply completes, show:
-auto-approve