Skip to content
Skillv1.0.0

terraform

Terraform infrastructure-as-code workflow patterns: state and environments, module design, safe plan/apply, drift control, and CI guardrails

by bobmatnyc(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from bobmatnyc/claude-mpm-skills (universal/infrastructure/terraform/SKILL.md). Install upstream with npx skills add bobmatnyc/claude-mpm-skills --skill terraform. Copyright stays with the author (MIT).

Terraform

Quick Start (workflow)

terraform init
terraform plan -out=tfplan
terraform apply tfplan

Safety Checklist

  • State: remote backend + locking; separate state per environment
  • Reviews: plan in CI; apply from a trusted runner with approvals
  • Guardrails: prevent_destroy and policy checks for prod

Load Next (References)

  • references/state-and-environments.md — backends, locking, workspaces vs separate state, drift
  • references/modules-and-composition.md — module interfaces, versioning, composition patterns
  • references/workflows-and-guardrails.md — CI plan/apply, policy-as-code, safe migrations

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/bobmatnyc-claude-mpm-skills-terraform/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

bobmatnyc-claude-mpm-skills-terraform.ocm.jsonjson
{
  "ocm": "1",
  "id": "bobmatnyc-claude-mpm-skills-terraform",
  "kind": "skill",
  "name": "terraform",
  "description": "Terraform infrastructure-as-code workflow patterns: state and environments, module design, safe plan/apply, drift control, and CI guardrails",
  "publisher": "bobmatnyc",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "terraform",
      "iac",
      "infrastructure",
      "provisioning",
      "ci",
      "state",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Terraform infrastructure-as-code workflow patterns: state and environments, module design, safe plan/apply, drift control, and CI guardrails"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/bobmatnyc/claude-mpm-skills",
      "path": "universal/infrastructure/terraform/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/bobmatnyc/claude-mpm-skills/blob/HEAD/universal/infrastructure/terraform/SKILL.md",
      "key": "bobmatnyc/claude-mpm-skills/universal/infrastructure/terraform/SKILL.md"
    },
    "license": "MIT"
  },
  "instructions": "# Terraform\n\n## Quick Start (workflow)\n\n```bash\nterraform init\nterraform plan -out=tfplan\nterraform apply tfplan\n```\n\n## Safety Checklist\n\n- State: remote backend + locking; separate state per environment\n- Reviews: plan in CI; apply from a trusted runner with approvals\n- Guardrails: `prevent_destroy` and policy checks for prod\n\n## Load Next (References)\n\n- `references/state-and-environments.md` — backends, locking, workspaces vs separate state, drift\n- `references/modules-and-composition.md` — module interfaces, versioning, composition patterns\n- `references/workflows-and-guardrails.md` — CI ",
  "cost": {
    "context_tokens": 160
  }
}

Fetch it by URL: GET /api/v1/registry/bobmatnyc-claude-mpm-skills-terraform/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.