Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 474 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 474 Bytes

Terraform Boilerplate Templates

Static Badge GPLv3 License

Official documentation 👉 https://developer.hashicorp.com/terraform

Build

terraform init
terraform plan -out deploy.tfplan
terraform apply deploy.tfplan

Destroy

terraform plan -destroy -out destroy.tfplan
terraform apply destroy.tfplan