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