https://github.com/jcmdsbr/terraform-basic-concepts
Learning IAC with the use Terraform
https://github.com/jcmdsbr/terraform-basic-concepts
terraform terraform-aws terraform-provider
Last synced: about 2 months ago
JSON representation
Learning IAC with the use Terraform
- Host: GitHub
- URL: https://github.com/jcmdsbr/terraform-basic-concepts
- Owner: jcmdsbr
- Created: 2020-09-20T20:29:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-03T20:00:34.000Z (about 4 years ago)
- Last Synced: 2025-01-27T07:30:02.471Z (4 months ago)
- Topics: terraform, terraform-aws, terraform-provider
- Language: HCL
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Terraform :sunglasses:
Learning basic concepts to use terraform to applying IAC (infra as a code)
## Give a Star! :star:
If you liked the project, please give a star ;)
## You need some of the fallowing tools :exclamation:
- Terraform
## Description :books:
Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions.
Configuration files describe to Terraform the components needed to run a single application or your entire datacenter. Terraform generates an execution plan describing what it will do to reach the desired state, and then executes it to build the described infrastructure. As the configuration changes, Terraform is able to determine what changed and create incremental execution plans which can be applied.
The infrastructure Terraform can manage includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, etc.
### Infrastructure as Code 💻
Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.### Execution Plans 📑
Terraform has a "planning" step where it generates an execution plan. The execution plan shows what Terraform will do when you call apply. This lets you avoid any surprises when Terraform manipulates infrastructure.### Resource Graph ✔️
Terraform builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, Terraform builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.### Change Automation ✔️
Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what Terraform will change and in what order, avoiding many possible human errors.**Official documentation** [Redirect](https://learn.hashicorp.com/terraform?utm_source=terraform_io&utm_content=terraform_io_hero)