with one click
terraform-apply
Apply a saved Terraform plan with safety checks
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Apply a saved Terraform plan with safety checks
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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