terraform/website/source/intro/hashicorp-ecosystem.html.ma...

31 lines
3.2 KiB
Markdown
Raw Normal View History

2015-04-20 23:20:50 +02:00
---
layout: "intro"
page_title: "Terraform and the HashiCorp Ecosystem"
sidebar_current: "hashicorp-ecosystem"
description: |-
Learn how Terraform fits in with the rest of the HashiCorp ecosystem of tools
---
# Terraform and the HashiCorp Ecosystem
HashiCorp is the creator of the open source projects Vagrant, Packer, Terraform, Serf, and Consul, and the commercial product Atlas. Terraform is just one piece of the ecosystem HashiCorp has built to make application delivery a versioned, auditable, repeatable, and collaborative process. To learn more about our beliefs on the qualities of the modern datacenter and responsible application delivery, read [The Atlas Mindset: Version Control for Infrastructure](https://hashicorp.com/blog/atlas-mindset.html?utm_source=terraform&utm_campaign=HashicorpEcosystem).
2015-04-20 23:20:50 +02:00
If you are using Terraform to create, combine, and modify infrastructure, its likely that you are using base images to configure that infrastructure. Packer is our tool for building those base images, such as AMIs, OpenStack images, Docker containers, and more.
2016-01-14 21:55:39 +01:00
Below are summaries of HashiCorps open source projects and a graphic showing how Atlas connects them to create a full application delivery workflow.
2015-04-20 23:20:50 +02:00
# HashiCorp Ecosystem
2015-04-20 23:55:13 +02:00
![Atlas Workflow](docs/atlas-workflow.png)
2015-04-21 00:54:11 +02:00
[Atlas](https://atlas.hashicorp.com/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is HashiCorp's only commercial product. It unites Packer, Terraform, and Consul to make application delivery a versioned, auditable, repeatable, and collaborative process.
2015-04-20 23:55:13 +02:00
2016-01-14 21:55:39 +01:00
[Packer](https://www.packer.io/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is a HashiCorp tool for creating machine images and deployable artifacts such as AMIs, OpenStack images, Docker containers, etc.
2015-04-20 23:20:50 +02:00
2016-01-14 21:55:39 +01:00
[Terraform](https://www.terraform.io/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is a HashiCorp tool for creating, combining, and modifying infrastructure. In the Atlas workflow Terraform reads from the artifact registry and provisions infrastructure.
2015-04-20 23:20:50 +02:00
2016-01-14 21:55:39 +01:00
[Consul](https://www.consul.io/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is a HashiCorp tool for service discovery, service registry, and health checks. In the Atlas workflow Consul is configured at the Packer build stage and identifies the service(s) contained in each artifact. Since Consul is configured at the build phase with Packer, when the artifact is deployed with Terraform, it is fully configured with dependencies and service discovery pre-baked. This greatly reduces the risk of an unhealthy node in production due to configuration failure at runtime.
2015-04-20 23:20:50 +02:00
2016-08-08 18:42:46 +02:00
[Serf](https://www.serf.io/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is a HashiCorp tool for cluster membership and failure detection. Consul uses Serfs gossip protocol as the foundation for service discovery.
2015-04-20 23:20:50 +02:00
2015-04-21 00:54:11 +02:00
[Vagrant](https://www.vagrantup.com/?utm_source=terraform&utm_campaign=HashicorpEcosystem) is a HashiCorp tool for managing development environments that mirror production. Vagrant environments reduce the friction of developing a project and reduce the risk of unexpected behavior appearing after deployment. Vagrant boxes can be built in parallel with production artifacts with Packer to maintain parity between development and production.