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.
1.What is terraform?
It is an open source infrastructure as code software tool.
this helps to manage the application infrastructure -programming
2.One example terraform program
resource “github_repository” “sample” {name = “example” description = “code” visibility=”public”}
3.List of 5 terraform commands and its use
terraform init —- initialize a working directory | |
terraform plan—show changes required and execution plan | |
terraform apply—-create or update | |
terraform show—-shows the terraform state or plan | |
terraform destroy—destroy previously created one |