Debug School

Ooi Tze Chun
Ooi Tze Chun

Posted on

Terraform Note

  1. Why do we need terraform?
    Single/centralize IaC tool for all platform.

  2. What is Providers?
    Use to connect other platform API

  3. What is Resources?
    Component or instance on platform like server, network, storage

  4. List down Top 8 commands which we have learnt so far?
    Terraform init
    Terraform plan
    Terraform validate
    Terraform apply
    Terraform show
    Terraform destroy
    Terraform version
    Terraform providers
    Terraform output

  5. What are the block we have used in .tf file? Explain in short.
    Providers - use to download and connect different platform API
    Output - to display require information from statefile
    Resources - to create or update in platform

Top comments (0)