Create a new Terraform module following best practices
<module_name> [--aws|--eks|--vpc]module/# Create New Terraform Module Create a new Terraform module. Arguments: $ARGUMENTS ## Before Creating Module 1. Use doc-researcher to verify resource schemas 2. Discuss module scope and interface with user 3. Wait for approval before creating files ## Module Types ### --aws (Generic AWS Module) Standard AWS resource module for common services: - S3 buckets - RDS instances - Lambda functions - IAM roles/policies ### --eks (EKS-Related Module) EKS cluster or component module: - EKS cluster configuration - Node group definitions - IRSA setup - Add-on configurations ### --vpc (Networking...