What problem does it solve? Writing cloud infrastructure from scratch for every project leads to inconsistent, untested Terraform code. This Skill provides standardized module patterns so teams can build reusable, validated infrastructure components across multiple cloud providers. ## Core Features & Use Cases - Multi-Cloud Module Patterns: Standard structures for AWS (VPC, EKS, RDS, S3), Azure (VNet, AKS), GCP (VPC, GKE, Cloud SQL), and OCI (VCN, OKE, Object Storage). - Best-Practice Module Design: Enforces semantic versioning, input validation blocks, pinned provider versions, consistent tagging, and documented variables and outputs. - Testing with Terratest: Includes Go-based Terratest patterns to validate modules through automated init, apply, and destroy cycles. - Use Case: A platform engineer needs a production VPC on AWS. Use this Skill to generate a VPC module with validated CIDR variables, private subnets, an Internet Gateway, tagged resources, and a Terratest suite. ## Quick Start Ask the AI to create a reusable Terraform VPC module for AWS with input validation, outputs, and a Terratest test file.