← スキル一覧に戻る

tofu
by poindexter12
⭐ 2🍴 0📅 2026年1月24日
SKILL.md
name: tofu description: | OpenTofu infrastructure-as-code reference for HCL syntax, state management, module design, and provider configuration. Use when working with OpenTofu configurations (.tf files), running tofu commands, troubleshooting state issues, or designing modules. Includes Proxmox provider patterns. Triggers: tofu, opentofu, tfstate, .tf files, HCL, modules, providers. agent: tofu-expert
OpenTofu Skill
Infrastructure-as-code reference for OpenTofu configurations, state management, and provider patterns.
OpenTofu is the open-source fork of Terraform, maintained by the Linux Foundation. Commands and syntax are nearly identical to Terraform.
Quick Reference
# Core workflow
tofu init # Initialize, download providers
tofu validate # Syntax validation
tofu fmt -recursive # Format HCL files
tofu plan # Preview changes
tofu apply # Apply changes
# Inspection
tofu state list # List resources in state
tofu state show <resource> # Show resource details
tofu graph | dot -Tsvg > graph.svg # Dependency graph
# Debug
TF_LOG=DEBUG tofu plan 2>debug.log
Core Workflow
init → validate → fmt → plan → apply
- init: Download providers, initialize backend
- validate: Check syntax and configuration validity
- fmt: Ensure consistent formatting
- plan: Preview what will change (review carefully)
- apply: Execute changes
Terraform Migration
OpenTofu is a drop-in replacement for Terraform:
# Replace terraform with tofu in commands
terraform init → tofu init
terraform plan → tofu plan
terraform apply → tofu apply
# State files are compatible
# Provider configurations work the same
# Most modules work without changes
Key differences:
- Different binary name (
tofuvsterraform) - Some newer Terraform features may not be available yet
- Provider registry defaults differ (can be configured)
Reference Files
Load on-demand based on task:
| Topic | File | When to Load |
|---|---|---|
| Troubleshooting | troubleshooting.md | Common errors, debugging |
| State | state-management.md | Backends, locking, operations |
| Modules | module-design.md | Module patterns, composition |
| Security | security.md | Secrets, state security |
| Migration | migration.md | Terraform → OpenTofu |
| Proxmox Gotchas | proxmox/gotchas.md | Critical provider issues |
| Proxmox Auth | proxmox/authentication.md | Provider config, API tokens |
| Proxmox VMs | proxmox/vm-qemu.md | proxmox_vm_qemu patterns |
Validation Checklist
Before tofu apply:
-
tofu initcompleted successfully -
tofu validatepasses -
tofu fmtapplied -
tofu planreviewed (check destroy/replace operations) - Backend configured correctly (for team environments)
- State locking enabled (if remote backend)
- Sensitive variables marked
sensitive = true - Provider versions pinned
- No secrets in version control
- Blast radius assessed (what could break?)
Variable Precedence
(highest to lowest)
-varflag:tofu apply -var="name=value"-var-fileflag:tofu apply -var-file=prod.tfvars*.auto.tfvarsfiles (alphabetically)terraform.tfvarsfileTF_VAR_*environment variables- Variable defaults in
variables.tf
Provider Configuration
# versions.tf
terraform {
required_version = ">= 1.6.0" # OpenTofu version
required_providers {
proxmox = {
source = "Telmate/proxmox"
version = "~> 3.0"
}
}
}
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です