Research-mind universal-infrastructure-terraform

Terraform

install
source · Clone the upstream repo
git clone https://github.com/MacPhobos/research-mind
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/MacPhobos/research-mind "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/universal-infrastructure-terraform" ~/.claude/skills/macphobos-research-mind-universal-infrastructure-terraform && rm -rf "$T"
manifest: .claude/skills/universal-infrastructure-terraform/skill.md
source content

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