From f7022711c023963f0f0dd8d0aa17dc209de7c3ff Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 28 Aug 2014 09:17:27 -0700 Subject: [PATCH] website: fix syntax of variables --- website/source/docs/configuration/variables.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/configuration/variables.html.md b/website/source/docs/configuration/variables.html.md index 924738d4c..4f8dc49ff 100644 --- a/website/source/docs/configuration/variables.html.md +++ b/website/source/docs/configuration/variables.html.md @@ -25,8 +25,8 @@ variable "key" {} variable "images" { default = { - "us-east-1": "image-1234", - "us-west-2": "image-4567", + us-east-1 = "image-1234" + us-west-2 = "image-4567" } } ```