terraform-module-creator
Terraform Module Creator
This skill assists in scaffolding new Terraform modules following the standards defined in terraform-module-library.
Quick Start
To create a new module, you should create the following directory structure:
mkdir -p modules/<module-name>
touch modules/<module-name>/{main,variables,outputs,versions}.tf
touch modules/<module-name>/README.md
Template Files
versions.tf
terraform {
required_version = ">= 1.0"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.0"
}
}
}
variables.tf
variable "project_id" {
description = "The project ID"
type = string
}
outputs.tf
output "id" {
description = "The ID of the created resource"
value = google_resource.main.id
}
Relationship with terraform-module-library
- Use terraform-module-creator (this skill) for the initial file creation and setup.
- Use terraform-module-library for design patterns, best practices, and internal code logic.
More from first-fluke/fullstack-starter
fastapi-router-creator
Guide for creating and organizing FastAPI routes using a file-based routing system or modular router pattern. Helps organize complex API structures.
46component-refactoring
Refactor high-complexity React components. Use when complexity metrics are high or to split monolithic UI.
33ui-ux-pro-max
Advanced design intelligence for professional UI/UX. Use for implementing modern design patterns (Glassmorphism, Bento Grid), ensuring accessibility, and generating tailored design systems for web and mobile.
26frontend-code-review
Standardized checklist and process for reviewing frontend code (.tsx, .ts, .js).
23frontend-engineer
Develop production-grade frontend code using shadcn/ui, best practices, and strict design alignment.
17skill-lookup
Discover, retrieve, and learn about available Agent Skills. key capability for finding tools to solve specific problems.
16