skills$openclaw/terraform-gen
lxgicstudios4.9k

by lxgicstudios

terraform-gen – OpenClaw Skill

terraform-gen is an OpenClaw Skills integration for coding workflows. Generate Terraform infrastructure configs. Use when provisioning cloud resources.

4.9k stars2.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameterraform-gen
descriptionGenerate Terraform infrastructure configs. Use when provisioning cloud resources. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/terraform-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/terraform-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains terraform-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
653 B
index.ts
776 B
_meta.json
297 B
package-lock.json
30.2 KB
package.json
627 B
README.md
244 B
SKILL.md
1.7 KB
tsconfig.json
251 B
SKILL.md

name: terraform-gen description: Generate Terraform infrastructure configs. Use when provisioning cloud resources.

Terraform Generator

Terraform syntax is verbose. Describe your infrastructure and get proper .tf files.

One command. Zero config. Just works.

Quick Start

npx ai-terraform "3 EC2 instances behind load balancer"

What It Does

  • Generates Terraform configuration
  • Supports AWS, GCP, Azure
  • Includes variables and outputs
  • Proper resource dependencies

Usage Examples

# AWS setup
npx ai-terraform "3 EC2 instances behind load balancer"

# Database
npx ai-terraform "RDS PostgreSQL with read replica"

# Kubernetes
npx ai-terraform "EKS cluster with 3 node groups"

Best Practices

  • Use modules - reusable infrastructure
  • State in S3 - not local
  • Use variables - no hardcoded values
  • Plan before apply - always review changes

When to Use This

  • Starting new infrastructure
  • Learning Terraform syntax
  • Quick prototyping
  • Generating baseline configs

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-terraform --help

How It Works

Takes your infrastructure description and generates Terraform HCL code with proper resources, variables, and outputs. Understands cloud provider APIs.

License

MIT. Free forever. Use it however you want.

README.md

ai-terraform

Generate Terraform infrastructure configs

Install

npm install -g ai-terraform

Usage

npx ai-terraform "your description here"

Setup

export OPENAI_API_KEY=sk-...

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-terraform --help ```

FAQ

How do I install terraform-gen?

Run openclaw add @lxgicstudios/terraform-gen in your terminal. This installs terraform-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/terraform-gen. Review commits and README documentation before installing.