1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/terraform.md
2019-01-30 11:19:23 +00:00

20 lines
370 B
Markdown

# terraform
> Create and deploy infrastructure as code to cloud providers.
> Homepage: <https://www.terraform.io/>.
- 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`