terraform

Automate cloud infrastructure provisioning with Terraform across AWS environments.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Terraform enables teams to codify, version, and reproduce cloud infrastructure, eliminating drift and manual configuration.

Core Features & Use Cases

  • Initialize and manage Terraform workspaces and backends to keep state consistent across environments.
  • Plan, apply, and destroy changes safely with repeatable automation.
  • Module patterns and variable management to enable reusable, scalable IaC across projects.
  • Reference patterns and practical examples to accelerate adoption in real-world workflows.

Quick Start

Run the Terraform Manager script to initialize, plan, and apply your configuration.

Frequently Asked Questions about terraform

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

FAQPage Schema
How do I manage Terraform state across multiple environments?

Terraform state across multiple environments is managed by configuring remote backends and workspaces. This approach keeps state consistent across deployments and prevents configuration drift.

What is the best way to structure reusable infrastructure as code?

Reusable infrastructure as code is structured using Terraform modules and variable management. This pattern enables scalable, repeatable deployments across multiple projects and environments.

How do I automate AWS infrastructure provisioning safely?

AWS infrastructure provisioning is automated safely by running Terraform plan, apply, and destroy commands within a scripted workflow. This ensures repeatable changes and eliminates manual configuration errors.

Can I use this to configure AWS provider settings and outputs?

Yes, AWS provider configuration, variables, and outputs are fully supported. The workflow includes examples for setting up providers and defining outputs to implement robust infrastructure as code.

Why does codifying cloud infrastructure eliminate manual configuration drift?

Codifying cloud infrastructure with Terraform eliminates drift by versioning and reproducing deployments automatically. This approach ensures your live environment consistently matches your declared configuration.