Debug School

Malcolm
Malcolm

Posted on

Recap Questions for Day 1

Why do we need terraform?
To easily provision and manage infrastructure resources at scale.
What is Providers?
A plugin that allows Terraform to interact with a certain technology from a service provider
What is Resources?
An infrastructure component that can be configured and managed using terraform
List out Top 8 Commands which we have learnt so far?
terraform init
terraform validate
terraform plan
terraform apply
terraform show
terraform state list
terraform destroy
terraform version

What are the block we have used in .tf file? Explain in Short
a unit of code enclosed in a curly brace
some blocks that we have used are: a resource block, an output block, a provider block.

Top comments (0)