From 4b8d11e2de3f682c9340b03c7e010ff9c548802c Mon Sep 17 00:00:00 2001 From: Guillaume Dupin Date: Fri, 22 Mar 2019 22:04:59 +0100 Subject: [PATCH] Create commands/workspace/show.html.md (#18355) Add documentation for `terraform workspace show` command --- website/docs/commands/workspace/show.html.md | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 website/docs/commands/workspace/show.html.md diff --git a/website/docs/commands/workspace/show.html.md b/website/docs/commands/workspace/show.html.md new file mode 100644 index 0000000000..748ce9de8d --- /dev/null +++ b/website/docs/commands/workspace/show.html.md @@ -0,0 +1,24 @@ +--- +layout: "commands-workspace" +page_title: "Command: workspace show" +sidebar_current: "docs-workspace-sub-show" +description: |- + The terraform workspace show command is used to output the current workspace. +--- + +# Command: workspace show + +The `terraform workspace show` command is used to output the current workspace. + +## Usage + +Usage: `terraform workspace show` + +The command will display the current workspace. + +## Example + +``` +$ terraform workspace show +development +```