1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:02:08 +02:00
tldr/pages/common/terraform.md
2018-09-18 18:16:08 +01:00

329 B

terraform

Create and deploy infrastructure as code to cloud providers.

  • 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