Files
Emmanuel Ferdman b93b52f5b6 terraform-destroy: add page (#21166)
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
2026-02-22 16:23:51 +02:00

596 B

terraform

Create and deploy infrastructure as code to cloud providers. More information: https://developer.hashicorp.com/terraform/cli/commands.

  • 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 all infrastructure in the current directory:

terraform destroy