Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 478 Bytes

terraform.md

File metadata and controls

29 lines (16 loc) · 478 Bytes

Terraform basic commands

terraform init

terraform validate

terraform plan

terraform apply

terrafom destroy

also you can use tfenv to handle several versions

Alias to clean .terraform files in a folder

alias clean_tf='find . -name ".terraform" -type d -exec rm -rf {} \;'

Usefull links