원클릭으로
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