From 61c7cf945767a659444f2014cbc51541652683fe Mon Sep 17 00:00:00 2001 From: arsdehnel Date: Sat, 7 May 2016 20:52:06 -0500 Subject: [PATCH] Change in CLI behavior Just wanted to call out that the CLI prompts for values for unset variables instead of an error. Guessing that was an enhancement somewhere along the line and just didn't get updated in the docs. --- website/source/intro/getting-started/variables.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/intro/getting-started/variables.html.md b/website/source/intro/getting-started/variables.html.md index 2fbda60ffa..cd57acfae0 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -33,7 +33,7 @@ This defines three variables within your Terraform configuration. The first two have empty blocks `{}`. The third sets a default. If a default value is set, the variable is optional. Otherwise, the variable is required. If you run `terraform plan` now, Terraform will -error since the required variables are not set. +prompt you for the values for these variables since the required variables are not set. ## Using Variables in Configuration