Terraform is HashiCorp's source-available infrastructure-as-code tool written in Go that enables users to safely and predictably create, change, and improve infrastructure by codifying APIs into declarative configuration files. The tool treats infrastructure as code that can be shared among team members, edited, reviewed, and versioned like any other software project. The repository at hashicorp/terraform contains only Terraform core, which includes the command-line interface and the main graph engine, while providers are implemented as separate plugins that Terraform can automatically download from the Terraform Registry.
The core functionality of Terraform centers on four key features. Infrastructure as Code allows users to describe infrastructure using a high-level configuration syntax, creating a blueprint of datacenters that can be versioned and reused across teams. Execution Plans provide a planning step where Terraform generates a preview of what changes will occur before applying them, preventing unexpected modifications to infrastructure. The Resource Graph feature builds a dependency map of all resources and parallelizes creation and modification of non-dependent resources, enabling efficient infrastructure provisioning while providing operators visibility into dependencies. Change Automation allows complex changesets to be applied with minimal human interaction, reducing the risk of human error through the combination of execution plans and resource graphs.
The repository demonstrates significant community engagement and active maintenance. GitGenius tracking shows the repository has grown to 48,823 stargazers as of July 2026, with consistent activity across issues and pull requests. The median response latency for issues and PRs is 0.0 hours, indicating rapid triage and engagement. The most active issue labels are new (1,198 items), bug (940 items), and enhancement (843 items), reflecting a healthy balance of feature development and bug fixes. The most prolific contributors tracked by GitGenius are jbardin with 2,654 events, crw with 1,659 events, and apparentlymart with 1,110 events, demonstrating concentrated expertise in core development.
The repository's influence extends across the broader development ecosystem. GitGenius identifies overlapping contributors with microsoft/vscode, microsoft/typescript, and rust-lang/rust, indicating that Terraform developers contribute to other major open-source projects and vice versa. The tool supports multi-cloud deployment, cross-platform compatibility, and modularization through its provider plugin architecture, enabling users to manage infrastructure across diverse cloud providers and custom solutions.
Terraform is licensed under the Business Source License 1.1 and is supported by comprehensive documentation on the HashiCorp developer portal, including tutorials on the HashiCorp Learn Platform and a certification program for the HashiCorp Certified Terraform Associate. The project maintains clear contribution guidelines through its contributing guide and bug triage process, with separate documentation contribution workflows managed through the Web Unified Docs repository. Provider development is supported through dedicated plugin development documentation, allowing the ecosystem to extend Terraform's capabilities beyond HashiCorp's own provider implementations.