Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
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