بنقرة واحدة
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