@@ -21,22 +21,37 @@ To view a list of the available commands at any time, just run terraform with no
2121
2222```
2323$ terraform
24- usage: terraform [--version] [--help] <command> [<args>]
25-
26- Available commands are:
27- apply Builds or changes infrastructure
28- destroy Destroy Terraform-managed infrastructure
29- get Download and install modules for the configuration
30- graph Create a visual graph of Terraform resources
31- init Initializes Terraform configuration from a module
32- output Read an output from a state file
33- plan Generate and show an execution plan
34- refresh Update local state file against real resources
35- remote Configure remote state storage
36- show Inspect Terraform state or plan
37- taint Manually mark a resource for recreation
38- validate Validates the Terraform files
39- version Prints the Terraform version
24+ Usage: terraform [--version] [--help] <command> [args]
25+
26+ The available commands for execution are listed below.
27+ The most common, useful commands are shown first, followed by
28+ less common or more advanced commands. If you're just getting
29+ started with Terraform, stick with the common commands. For the
30+ other commands, please read the help and docs before usage.
31+
32+ Common commands:
33+ apply Builds or changes infrastructure
34+ console Interactive console for Terraform interpolations
35+ destroy Destroy Terraform-managed infrastructure
36+ fmt Rewrites config files to canonical format
37+ get Download and install modules for the configuration
38+ graph Create a visual graph of Terraform resources
39+ import Import existing infrastructure into Terraform
40+ init Initializes Terraform configuration from a module
41+ output Read an output from a state file
42+ plan Generate and show an execution plan
43+ push Upload this Terraform module to Atlas to run
44+ refresh Update local state file against real resources
45+ remote Configure remote state storage
46+ show Inspect Terraform state or plan
47+ taint Manually mark a resource for recreation
48+ untaint Manually unmark a resource as tainted
49+ validate Validates the Terraform files
50+ version Prints the Terraform version
51+
52+ All other commands:
53+ debug Debug output management (experimental)
54+ state Advanced state management
4055```
4156
4257To get help for any specific command, pass the -h flag to the relevant subcommand. For example,
0 commit comments