hashicorp/terraform

Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into...

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 30 minutes ago
Added to GitGenius on April 8th, 2021
Created on March 13th, 2014
Open Issues & Pull Requests: 1,913 (+0)
Number of forks: 10,611
Total Stargazers: 49,527 (+1)
Total Subscribers: 1,181 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 11.0 hours
Mean response time: 322.7 days
90th percentile: 1358.7 days
Tracked items: 1,783

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 97% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "provider/aws" is answered fastest, typically in about an hour, while "config" waits about 34 months. 74% of tracked open issues have had no activity in three months, so the open count overstates what is actively being worked. Only 4% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 749
New in 7 days: 2
Closed in 7 days: 4
Avg open age: 1,260 days
Stale 30+ days: 726
Stale 90+ days: 689

Recent activity

Opened in 7 days: 2
Closed in 7 days: 4
Comments in 7 days: 7
Events in 7 days: 22

Top labels

  • new (1,218)
  • bug (951)
  • enhancement (857)
  • question (207)
  • cli (134)
  • config (117)
  • waiting-response (102)
  • confirmed (95)

Detailed Description

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.

The repository's influence extends across the broader development ecosystem. 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.