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 |