> building-terraform-modules
Execute this skill empowers AI assistant to build reusable terraform modules based on user specifications. it leverages the terraform-module-builder plugin to generate production-ready, well-documented terraform module code, incorporating best practices for sec... Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/building-terraform-modules?format=md"Building Terraform Modules
Overview
Build reusable, production-ready Terraform modules with proper variable definitions, outputs, validation rules, documentation, and examples. Generate modules following HashiCorp's standard module structure for AWS, GCP, and Azure resources with security best practices, tagging conventions, and lifecycle management.
Prerequisites
- Terraform 1.0+ installed (
terraform version) - Cloud provider credentials configured for the target platform
- Understanding of the infrastructure resources the module will manage
- Familiarity with HCL syntax and Terraform module conventions
terraform-docsinstalled for automated documentation generation (optional)
Instructions
- Define the module scope: determine which cloud resources the module manages and its input/output contract
- Create the standard module file structure:
main.tf,variables.tf,outputs.tf,versions.tf,locals.tf - Write
versions.tfwithrequired_versionandrequired_providersblocks pinned to stable versions - Define input variables in
variables.tfwith descriptions, types, defaults, and validation rules - Implement resources in
main.tfusing variables for all configurable values; uselocalsfor computed values - Add meaningful outputs in
outputs.tffor resource IDs, ARNs, endpoints, and connection strings - Implement security defaults: encryption enabled, public access blocked, least-privilege IAM, logging enabled
- Create an
examples/directory with at least one complete usage example showing module invocation - Generate documentation with
terraform-docs markdown table . > README.md - Validate the module with
terraform init && terraform validateand test withterraform planusing the example
Output
- Module files:
main.tf,variables.tf,outputs.tf,versions.tf,locals.tf - Example usage in
examples/basic/main.tfwith realistic variable values - Auto-generated
README.mdwith inputs, outputs, and usage documentation .terraform-docs.ymlconfiguration for documentation generation- Optional: test files using Terratest or
terraform test(HCL-based)
Error Handling
| Error | Cause | Solution |
|---|---|---|
variable validation failed | Input value does not meet validation rule | Check the validation block in variables.tf; adjust the value or the validation regex |
provider not found | Missing or wrong provider source in versions.tf | Add the provider to required_providers with correct source and version constraint |
circular dependency | Resources referencing each other in a loop | Refactor to break the cycle; use depends_on or separate into sub-modules |
output references undeclared resource | Typo in resource name or resource removed | Verify resource names in main.tf match output references exactly |
module source not found | Incorrect module path or registry reference | Verify the source path is relative (e.g., ./modules/vpc) or a valid registry address |
Examples
- "Build a Terraform module for an AWS VPC with configurable CIDR, public/private subnets across 3 AZs, NAT gateway, and flow logs."
- "Create a GCP Cloud Run module with custom domain, IAM bindings, and auto-scaling configuration as input variables."
- "Generate a Terraform module for an S3 bucket with versioning, encryption, lifecycle rules, and access logging, with all settings as optional variables with secure defaults."
Resources
- Terraform module registry: https://registry.terraform.io/
- Module structure guide: https://developer.hashicorp.com/terraform/language/modules/develop/structure
- terraform-docs: https://terraform-docs.io/
- Module best practices: https://developer.hashicorp.com/terraform/language/modules/develop
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".