Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 503 Bytes

TERRAFORM-GUIDE.md

File metadata and controls

17 lines (13 loc) · 503 Bytes

❓ How to deploy the infrastructure with Terraform 🔖

Navigate to the Terraform code folder ➡️

  • cd your_terraform_folder

Initialize Your Directory 🛴

  • Run terrraform init

Validate Your Terraform Code ✔️

  • Run terraform validate

Plan Your Infrastructure 📆

  • Run terraform plan

Deploy Your Infrastructure 🏗️

  • Run terraform apply

Destroy Your Infrastructure (run when you don't need the Infrastructure anymore) 🔥

  • Run terraform destroy