Terraform
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
What is terraform?
Terraform is an open source software tool that allows engineers to the physical resources that are required to run for an application. The infrastructure as a code is an IT practice that manages the application’s IT infrastructure through programming. This allows the developers to manage the resources that an operating system manually configure. It automatically maps the given resources to a default provider identified.
-One example terraform program
resource “github_repository” “example” {
name = “example”
description = “My awesome codebase”
visibility = “public”
}
-List of 5 terraform commands and its use
- terraform init
- terraform apply
- terraform plan
- terraform show
- terraform destroy