System Grab Bag

View all TLDR pages from common (or from all pages)

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
  • Verify that the configuration files are syntactically valid:
    terraform validate
  • Format configuration according to Terraform language style conventions:
    terraform fmt
  • Generate and show an execution plan:
    terraform plan
  • Build or change infrastructure:
    terraform apply
  • Destroy Terraform-managed infrastructure:
    terraform destroy

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.