Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    aj-geddes

    terraform-infrastructure

    aj-geddes/terraform-infrastructure
    DevOps
    59
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Infrastructure as Code using Terraform with modular components, state management, and multi-cloud deployments. Use for provisioning and managing cloud resources.

    SKILL.md

    Terraform Infrastructure

    Table of Contents

    • Overview
    • When to Use
    • Quick Start
    • Reference Guides
    • Best Practices

    Overview

    Build scalable infrastructure as code with Terraform, managing AWS, Azure, GCP, and on-premise resources through declarative configuration, remote state, and automated provisioning.

    When to Use

    • Cloud infrastructure provisioning
    • Multi-environment management (dev, staging, prod)
    • Infrastructure versioning and code review
    • Cost tracking and resource optimization
    • Disaster recovery and environment replication
    • Automated infrastructure testing
    • Cross-region deployments

    Quick Start

    Minimal working example:

    # terraform/main.tf
    terraform {
      required_version = ">= 1.0"
    
      required_providers {
        aws = {
          source  = "hashicorp/aws"
          version = "~> 5.0"
        }
      }
    
      # Remote state configuration
      backend "s3" {
        bucket         = "terraform-state-prod"
        key            = "prod/terraform.tfstate"
        region         = "us-east-1"
        encrypt        = true
        dynamodb_table = "terraform-locks"
      }
    }
    
    provider "aws" {
      region = var.aws_region
    
      default_tags {
    // ... (see reference guides for full implementation)
    

    Reference Guides

    Detailed implementations in the references/ directory:

    Guide Contents
    AWS Infrastructure Module AWS Infrastructure Module
    Variables and Outputs Variables and Outputs
    Terraform Deployment Script Terraform Deployment Script

    Best Practices

    ✅ DO

    • Use remote state (S3, Terraform Cloud)
    • Implement state locking (DynamoDB)
    • Organize code into modules
    • Use workspaces for environments
    • Apply tags consistently
    • Use variables for flexibility
    • Implement code review before apply
    • Keep sensitive data in separate variable files

    ❌ DON'T

    • Store state files locally in git
    • Use hardcoded values
    • Mix environments in single state
    • Skip terraform plan review
    • Use root module for everything
    • Store secrets in code
    • Disable state locking
    Recommended Servers
    Google Compute Engine
    Google Compute Engine
    Cloudflare
    Cloudflare
    Vercel
    Vercel
    Repository
    aj-geddes/useful-ai-prompts
    Files