fix image references on intro page

This commit is contained in:
Laura Pacilio 2022-01-26 18:21:09 -05:00
parent fb4b5c4d81
commit 4188c4c518
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ HashiCorp Terraform is an infrastructure as code tool that lets you define both
## How does Terraform work?
Terraform creates and manages resources on cloud platforms and other services through their application programming interfaces (APIs). Providers enable Terraform to work with virtually any platform or service with an accessible API.
![Terraform creates and manages cloud platforms and services through their APIs](/images/intro-terraform-apis.png)
![Terraform creates and manages cloud platforms and services through their APIs](/img/docs/intro-terraform-apis.png)
HashiCorp and the Terraform community have already written **more than 1700 providers** to manage thousands of different types of resources and services, and this number continues to grow. You can find all publicly available providers on the [Terraform Registry](https://registry.terraform.io/), including Amazon Web Services (AWS), Azure, Google Cloud Platform (GCP), Kubernetes, Helm, GitHub, Splunk, DataDog, and many more.
@ -24,7 +24,7 @@ The core Terraform workflow consists of three stages:
- **Plan:** Terraform creates an execution plan describing the infrastructure it will create, update, or destroy based on the existing infrastructure and your configuration.
- **Apply:** On approval, Terraform performs the proposed operations in the correct order, respecting any resource dependencies. For example, if you update the properties of a VPC and change the number of virtual machines in that VPC, Terraform will recreate the VPC before scaling the virtual machines.
![The Terraform workflow has three steps: Write, Plan, and Apply](/images/intro-terraform-workflow.png)
![The Terraform workflow has three steps: Write, Plan, and Apply](/img/docs/intro-terraform-workflow.png)
## Why Terraform?