website: add links to new commands
This commit is contained in:
parent
21c29dd229
commit
493eaa3f21
|
@ -25,10 +25,16 @@ usage: terraform [--version] [--help] <command> [<args>]
|
||||||
|
|
||||||
Available commands are:
|
Available commands are:
|
||||||
apply Builds or changes infrastructure
|
apply Builds or changes infrastructure
|
||||||
|
destroy Destroy Terraform-managed infrastructure
|
||||||
|
get Download and install modules for the configuration
|
||||||
graph Create a visual graph of Terraform resources
|
graph Create a visual graph of Terraform resources
|
||||||
|
init Initializes Terraform configuration from a module
|
||||||
output Read an output from a state file
|
output Read an output from a state file
|
||||||
plan Generate and show an execution plan
|
plan Generate and show an execution plan
|
||||||
|
pull Refreshes the local state copy from the remote server
|
||||||
|
push Uploads the the local state to the remote server
|
||||||
refresh Update local state file against real resources
|
refresh Update local state file against real resources
|
||||||
|
remote Configures remote state management
|
||||||
show Inspect Terraform state or plan
|
show Inspect Terraform state or plan
|
||||||
version Prints the Terraform version
|
version Prints the Terraform version
|
||||||
```
|
```
|
||||||
|
|
|
@ -79,10 +79,22 @@
|
||||||
<a href="/docs/commands/plan.html">plan</a>
|
<a href="/docs/commands/plan.html">plan</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("docs-commands-pull") %>>
|
||||||
|
<a href="/docs/commands/pull.html">pull</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("docs-commands-push") %>>
|
||||||
|
<a href="/docs/commands/push.html">push</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-commands-refresh") %>>
|
<li<%= sidebar_current("docs-commands-refresh") %>>
|
||||||
<a href="/docs/commands/refresh.html">refresh</a>
|
<a href="/docs/commands/refresh.html">refresh</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("docs-commands-remote") %>>
|
||||||
|
<a href="/docs/commands/remote.html">remote</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li<%= sidebar_current("docs-commands-show") %>>
|
<li<%= sidebar_current("docs-commands-show") %>>
|
||||||
<a href="/docs/commands/show.html">show</a>
|
<a href="/docs/commands/show.html">show</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue