Files
tldr/pages/common/terraform.md
2019-06-03 14:19:41 +02:00

21 lines
378 B
Markdown

# terraform
> Create and deploy infrastructure as code to cloud providers.
> More information: <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`