terraform

Manage cloud infrastructure as code with Terraform CLI.

3|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/jholhewres/devclaw-skills --skill terraform-jholhewres
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: terraform
Source: https://github.com/jholhewres/devclaw-skills/tree/main/skills/terraform
Command: npx skills add https://github.com/jholhewres/devclaw-skills --skill terraform-jholhewres

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the management of cloud infrastructure by enabling users to define, provision, and manage infrastructure as code, ensuring consistency and repeatability.

Core Features & Use Cases

  • Declarative Infrastructure Management: Define infrastructure resources in configuration files.
  • State Management: Track the state of deployed infrastructure for efficient updates and rollbacks.
  • Use Case: Deploy a new web server cluster to AWS, including load balancers and security groups, by running a single terraform apply command after defining the resources.

Quick Start

Initialize, plan, and apply Terraform configurations to provision infrastructure.

Frequently Asked Questions about terraform

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage cloud infrastructure as code for consistent provisioning?

Manage cloud infrastructure as code by defining resources declaratively in configuration files and executing commands to provision them. This approach ensures consistent, repeatable deployments across your cloud environment.

What is the best way to deploy a web server cluster to AWS using infrastructure as code?

Deploy an AWS web server cluster by defining load balancers and security groups in declarative configuration files. Running a single apply command provisions the entire infrastructure architecture reliably.

Do I need the Terraform CLI and cloud provider credentials to provision infrastructure?

Yes, provisioning infrastructure requires the Terraform CLI installed locally and configured cloud provider credentials. These prerequisites allow the declarative configurations to authenticate and deploy resources to your cloud environment.

How do I initialize providers and plan changes for cloud infrastructure provisioning?

Initialize providers to download necessary plugins, then run a plan command to preview infrastructure changes. This workflow lets you review modifications before applying configurations to your cloud environment.

Why track state when managing infrastructure as code for cloud resources?

Tracking state maps your declarative configuration files to real cloud resources. This state management enables efficient updates, accurate rollbacks, and prevents drift between your infrastructure as code and live environments.