terraform-module-creator

Terraform Module Creator

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "terraform-module-creator" with this command: npx skills add first-fluke/fullstack-starter/first-fluke-fullstack-starter-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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

orchestrator

No summary provided by upstream source.

Repository SourceNeeds Review
General

commit

No summary provided by upstream source.

Repository SourceNeeds Review
General

ui-ux-pro-max

No summary provided by upstream source.

Repository SourceNeeds Review