ワンクリックで
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