一键导入
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