1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-05 19:13:58 +02:00
tldr/pages/common/tofu.md
Managor 99c7af4917
*: use a more specific more info link, org domain (#17699)
Mass update for more specific "more info" links
2025-08-16 11:12:49 -07:00

559 B

tofu

Create and deploy infrastructure as code to cloud providers. Open-source fork of Terraform. More information: https://opentofu.org/docs/cli/commands/.

  • Initialize a new or existing OpenTofu configuration:

tofu init

  • Verify that the configuration files are syntactically valid:

tofu validate

  • Format configuration according to OpenTofu language style conventions:

tofu fmt

  • Generate and show an execution plan:

tofu plan

  • Build or change infrastructure:

tofu apply

  • Destroy Tofu-managed infrastructure:

tofu destroy