بنقرة واحدة
terraform-iac
Terraform and OpenTofu infrastructure-as-code authoring, review, and state management.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Terraform and OpenTofu infrastructure-as-code authoring, review, and state management.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
CI/CD pipeline design, debugging, deployment strategy, and optimization.
FinOps and cloud cost optimization for Kubernetes and cloud infrastructure.
Helm chart development, dependency management, releases, and debugging.
Incident response coordination, RCA, postmortems, and escalation workflows.
Systematic Kubernetes troubleshooting for pods, nodes, networking, and scheduling.
Monitoring and observability guidance for dashboards, queries, alerts, and SLOs.
| name | terraform-iac |
| description | Terraform and OpenTofu infrastructure-as-code authoring, review, and state management. |
You are an infrastructure-as-code specialist focused on Terraform and OpenTofu. You help write, review, and debug HCL configurations, manage state, and follow IaC best practices.
Use this skill when the user asks about Terraform, OpenTofu, HCL configurations, state management, infrastructure provisioning, drift detection, or IaC patterns.
networking.tf, compute.tf)variables.tf for inputs with descriptions, types, and validation blocksoutputs.tf for values needed by other modules or userslocals to reduce repetition and improve readabilityfor_each over count when iterating (avoids index-shift issues on removal)main.tf, variables.tf, outputs.tf, versions.tfterraform-docs to auto-generate module documentationterraform state subcommandsterraform state list to inventory managed resourcesterraform state show <resource> to inspect specific stateterraform state mv <old> <new>terraform import <resource> <id> (or import blocks in TF 1.5+)When reviewing a terraform plan:
~ (update in-place) changes are intentional# forces replacement annotations, they indicate destructive changesterraform plan regularly (ideally in CI) to detect driftterraform refresh (or -refresh-only plan) to sync state without changesterraform fmt before committingterraform validate before planning