From 3cf4f57fe8fe58a1d0ff9ca7cf976e9d741676ee Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 30 Aug 2014 16:20:45 -0700 Subject: [PATCH] website: update docs for new mappings format --- website/source/docs/configuration/variables.html.md | 6 +++--- website/source/intro/getting-started/variables.html.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/source/docs/configuration/variables.html.md b/website/source/docs/configuration/variables.html.md index 4f8dc49ff..b86654094 100644 --- a/website/source/docs/configuration/variables.html.md +++ b/website/source/docs/configuration/variables.html.md @@ -78,8 +78,8 @@ An example: ``` variable "images" { default = { - "us-east-1": "image-1234", - "us-west-2": "image-4567", + us-east-1 = "image-1234" + us-west-2 = "image-4567" } } ``` @@ -105,7 +105,7 @@ where `DEFAULT` is: VALUE { - KEY: VALUE, + KEY = VALUE ... } ``` diff --git a/website/source/intro/getting-started/variables.html.md b/website/source/intro/getting-started/variables.html.md index 4926b1d6e..a3bc1b791 100644 --- a/website/source/intro/getting-started/variables.html.md +++ b/website/source/intro/getting-started/variables.html.md @@ -96,8 +96,8 @@ support for the "us-west-2" region as well: ``` variable "amis" { default = { - "us-east-1": "ami-aa7ab6c2", - "us-west-2": "ami-23f78e13", + us-east-1 = "ami-aa7ab6c2" + us-west-2 = "ami-23f78e13" } } ```