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?
Hashicorp is an organisation or company that provides us Terraform platform.Terraform is an infrastructure as code tool that lets us understand or work with both cloud and also some of the readable configuration files that we can edit , plan,apply changes,version and reuse and also share.
One example terraform program
resource “github_repository” “example” {
name = “example9999999”
description = “My awesome codebase hey”
visibility = “public”
}
provider “github” {
token = “xxxxxxx”
owner = “xxxxxxx”
}
List 5 commands in terraform and their uses
1.vi terraform.tf
2.terraform init
3.terraform plan
4.terraform apply
5.terraform destroy