← Back to list

terraform-module-creator
by first-fluke
Production-ready fullstack monorepo template with Next.js, FastAPI, Flutter, Terraform, and mise
⭐ 141🍴 21📅 Jan 23, 2026
SKILL.md
name: terraform-module-creator description: Helper for scaffolding new Terraform modules. Complements terraform-module-library by providing structure generation.
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.
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
✓人気
GitHub Stars 100以上
+5
✓最近の活動
1ヶ月以内に更新
+10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

