Terraform
Skill georgekhananaev/claude-skills-vault/.claude/skills/terraform
A curated collection of high impact skills for Claude Code designed to supercharge the senior full stack workflow. This vault automates the repetitive parts of development like architectural reviews, TDD cycles, and PR management so you can stay in flow. It is a force multiplier for shipping clean, production ready code at scale. 🚀⚡️
npx -y skills add georgekhananaev/claude-skills-vault --skill terraformAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Terraform infrastructure-as-code skills from HashiCorp. Covers HCL code generation with style conventions, testing with .tftest.hcl files, and module refactoring. Use when writing, reviewing, generating, or refactoring Terraform configurations, creating tests, or designing modules.
SKILL.md
1.7 KB, 326 tokens by cl100k_base, as published. Nobody here has run it
Terraform Skills
HashiCorp's official Terraform agent skills for infrastructure-as-code development.
Available Sub-Skills
| Skill | File | Use When |
|---|---|---|
| Style Guide | terraform-style-guide-SKILL.md | Writing or reviewing Terraform HCL code |
| Testing | terraform-test-SKILL.md | Creating .tftest.hcl test files, writing assertions, mocking |
| Module Refactoring | refactor-module-SKILL.md | Transforming monolithic configs into reusable modules |
Quick Reference
File Organization
| File | Purpose |
|---|---|
terraform.tf | Version requirements |
providers.tf | Provider configurations |
main.tf | Primary resources |
variables.tf | Input variables (alphabetical) |
outputs.tf | Output values (alphabetical) |
locals.tf | Local values |
Key Conventions
- Two spaces per indent, no tabs
- Lowercase with underscores for names
- Every variable needs
typeanddescription - Every output needs
description - Prefer
for_eachovercount - Never hardcode credentials
Validation
terraform fmt -recursive
terraform validate
Source
From hashicorp/agent-skills - terraform code-generation and module-generation plugins.
What ships with it: 3 files
60.0 KB alongside SKILL.md
- refactor-module-SKILL.md13.3 KB
- terraform-style-guide-SKILL.md7.5 KB
- terraform-test-SKILL.md39.1 KB