From 3900c3f08629cd90f6b05a6e34ee3e62fbde3b90 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Sun, 8 May 2016 19:38:35 -0400 Subject: [PATCH] docs: Clarify wording of which variables prompt --- website/source/intro/getting-started/variables.html.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/source/intro/getting-started/variables.html.md b/website/source/intro/getting-started/variables.html.md index cd57acfae..a9dcc15db 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -29,11 +29,11 @@ variable "region" { } ``` -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 -prompt you for the values for these variables since the required variables are not set. +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 prompt you for the values for unset string +variables. ## Using Variables in Configuration