From 9523040bc933c7409f325eb481e1712bed2a6811 Mon Sep 17 00:00:00 2001 From: mg Date: Fri, 28 Jun 2019 12:07:08 -0500 Subject: [PATCH] Update plan.html.markdown Ran into an issue requiring `-var='foo=bar'` over `-var 'foo=bar'`. Without the `=` the generic response came back: ``` Usage: terraform plan [options] [DIR] Generates an execution plan for Terraform. This execution plan can be reviewed... ``` Terraform `0.12.2` --- website/docs/commands/plan.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/commands/plan.html.markdown b/website/docs/commands/plan.html.markdown index 838daf7a2..a4d5ee1a8 100644 --- a/website/docs/commands/plan.html.markdown +++ b/website/docs/commands/plan.html.markdown @@ -72,7 +72,7 @@ The command-line flags are all optional. The list of available flags are: Address](/docs/internals/resource-addressing.html) to target. This flag can be used multiple times. See below for more information. -* `-var 'foo=bar'` - Set a variable in the Terraform configuration. This flag +* `-var='foo=bar'` - Set a variable in the Terraform configuration. This flag can be set multiple times. Variable values are interpreted as [HCL](/docs/configuration/syntax.html#HCL), so list and map values can be specified via this flag.