update documentation images (#1864)

Signed-off-by: ollevche <ollevche@gmail.com>
This commit is contained in:
Oleksandr Levchenkov 2024-07-29 18:47:07 +03:00 committed by GitHub
parent 2506fb7bab
commit c3ddd51d8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 5 deletions

View File

@ -76,4 +76,4 @@ $ tofu graph | dot -Tsvg > graph.svg
```
Here is an example graph output:
![Graph Example](/img/docs/graph-example.png)
![Graph Example](../../images/graph-example.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -13,8 +13,6 @@ OpenTofu is an infrastructure as code tool that lets you define both cloud and o
OpenTofu creates and manages resources on cloud platforms and other services through their application programming interfaces (APIs). Providers enable OpenTofu to work with virtually any platform or service with an accessible API.
![OpenTofu creates and manages cloud platforms and services through their APIs](/img/docs/intro-opentf-apis.png)
The OpenTofu community have already written **thousands of providers** to manage many different types of resources and services. You can find all publicly available providers on the [Public OpenTofu Registry](https://github.com/opentofu/registry/tree/main/providers), including Amazon Web Services (AWS), Azure, Google Cloud Platform (GCP), Kubernetes, Helm, GitHub, Splunk, DataDog, and many more.
The core OpenTofu workflow consists of three stages:
@ -23,8 +21,6 @@ The core OpenTofu workflow consists of three stages:
- **Plan:** OpenTofu creates an execution plan describing the infrastructure it will create, update, or destroy based on the existing infrastructure and your configuration.
- **Apply:** On approval, OpenTofu 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, OpenTofu will recreate the VPC before scaling the virtual machines.
![The OpenTofu workflow has three steps: Write, Plan, and Apply](/img/docs/intro-opentf-workflow.png)
## Why OpenTofu?
### Manage any infrastructure