refreshed concepts by watching terraform course on udemy
learnt the concept of workspaces in terraform why are they important
workspaces help to maintain seperate and isolate statefile
this helps build infrastructure in different environments like devlopment(dev)
staging(stage)
production(prod)
when combined with specific tfvars like dev.tfvars we can configure the requirements according to environment and deploy
command for custom tfvars deployment is
terraform apply -var-file=dev.tfvars
Top comments (0)