tldr/pages/common/terraform.md

21 lines
370 B
Markdown
Raw Normal View History

2018-09-18 18:16:08 +01:00
# terraform
> Create and deploy infrastructure as code to cloud providers.
2019-01-30 11:19:23 +00:00
> Homepage: <https://www.terraform.io/>.
2018-09-18 18:16:08 +01:00
- Initialize a new or existing Terraform configuration:
`terraform init`
- Generate and show an execution plan:
`terraform plan`
- Build or change infrastructure:
`terraform apply`
- Destroy Terraform-managed infrastructure:
`terraform destroy`